HomeSort by relevance Sort by last modified time
    Searched refs:WebHelperPlugin (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/public/web/
WebHelperPlugin.h 42 class WebHelperPlugin {
46 BLINK_EXPORT static WebHelperPlugin* create(const WebString& PluginType, WebLocalFrame*);
52 // Initiates destruction of the WebHelperPlugin.
56 virtual ~WebHelperPlugin() { }
64 template<> struct OwnedPtrDeleter<blink::WebHelperPlugin> {
65 static void deletePtr(blink::WebHelperPlugin* plugin)
  /external/chromium_org/third_party/WebKit/Source/web/
WebHelperPluginImpl.h 35 #include "public/web/WebHelperPlugin.h"
54 class WebHelperPluginImpl FINAL : public WebHelperPlugin {
58 // WebHelperPlugin methods:
63 friend class WebHelperPlugin;
WebHelperPluginImpl.cpp 45 DEFINE_TYPE_CASTS(WebHelperPluginImpl, WebHelperPlugin, plugin, true, true);
47 WebHelperPlugin* WebHelperPlugin::create(const WebString& pluginType, WebLocalFrame* frame)
49 OwnPtr<WebHelperPlugin> plugin = adoptPtr<WebHelperPlugin>(new WebHelperPluginImpl());
  /external/chromium_org/content/renderer/media/crypto/
pepper_cdm_wrapper_impl.h 18 class WebHelperPlugin;
27 // Deleter for blink::WebHelperPlugin.
29 void operator()(blink::WebHelperPlugin* plugin) const;
32 // Implements a wrapper on blink::WebHelperPlugin so that the plugin gets
33 // destroyed properly. It owns all the objects derived from WebHelperPlugin
53 typedef scoped_ptr<blink::WebHelperPlugin, WebHelperPluginDeleter>
pepper_cdm_wrapper_impl.cc 14 #include "third_party/WebKit/public/web/WebHelperPlugin.h"
21 void WebHelperPluginDeleter::operator()(blink::WebHelperPlugin* plugin) const {
30 ScopedHelperPlugin helper_plugin(blink::WebHelperPlugin::create(
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebHelperPluginTest.cpp 6 #include "public/web/WebHelperPlugin.h"
56 // WebHelperPlugin is destroyed by a task posted to the message loop.
62 OwnPtr<WebHelperPlugin> m_plugin;
67 m_plugin = adoptPtr(WebHelperPlugin::create("hello", m_helper.webView()->mainFrame()->toWebLocalFrame()));
77 m_plugin = adoptPtr(WebHelperPlugin::create("hello", m_helper.webView()->mainFrame()->toWebLocalFrame()));
89 m_plugin = adoptPtr(WebHelperPlugin::create("hello", m_helper.webView()->mainFrame()->toWebLocalFrame()));

Completed in 66 milliseconds