2 * Copyright (C) 2012 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #ifndef WebHelperPluginImpl_h
32 #define WebHelperPluginImpl_h
34 #include "WebHelperPlugin.h"
35 #include <wtf/OwnPtr.h>
36 #include <wtf/RefCounted.h>
44 class HelperPluginChromeClient;
46 class WebWidgetClient;
48 // Hosts a simple page that instantiates a plugin using an <object> tag.
49 // The widget is offscreen, and the plugin will not receive painting, resize, etc. events.
50 class WebHelperPluginImpl : public WebHelperPlugin,
51 public RefCounted<WebHelperPluginImpl> {
52 WTF_MAKE_NONCOPYABLE(WebHelperPluginImpl);
53 WTF_MAKE_FAST_ALLOCATED;
56 virtual ~WebHelperPluginImpl();
57 bool initialize(WebViewImpl*, const String& pluginType);
58 void closeHelperPlugin();
60 // WebHelperPlugin methods:
61 virtual void initializeFrame(WebFrameClient*) OVERRIDE;
62 virtual WebPlugin* getPlugin() OVERRIDE;
65 explicit WebHelperPluginImpl(WebWidgetClient*);
66 bool initializePage(WebKit::WebViewImpl*, const String& pluginType);
70 virtual void setCompositorSurfaceReady() OVERRIDE;
71 virtual void composite(bool) OVERRIDE;
72 virtual void layout() OVERRIDE;
73 virtual void setFocus(bool) OVERRIDE;
74 virtual void close() OVERRIDE;
76 WebWidgetClient* m_widgetClient;
77 WebViewImpl* m_webView;
78 OwnPtr<WebCore::Page> m_page;
79 OwnPtr<HelperPluginChromeClient> m_chromeClient;
81 friend class WebHelperPlugin;
82 friend class HelperPluginChromeClient;
87 #endif // WebHelperPluginImpl_h