Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / web / WebHelperPluginImpl.h
index 74d5041..2f9ec7b 100644 (file)
@@ -65,7 +65,7 @@ public:
 
 private:
     explicit WebHelperPluginImpl(WebWidgetClient*);
-    bool initializePage(const String& pluginType, const WebDocument& hostDocument);
+    bool initializePage(const WebString& pluginType, const WebDocument& hostDocument);
     void destroyPage();
 
     // This object needs to be destroyed by calling closeAndDelete().
@@ -92,16 +92,4 @@ DEFINE_TYPE_CASTS(WebHelperPluginImpl, WebWidget, widget, widget->isHelperPlugin
 
 } // namespace blink
 
-namespace WTF {
-
-template<typename T> struct OwnedPtrDeleter;
-template<> struct OwnedPtrDeleter<blink::WebHelperPluginImpl> {
-    static void deletePtr(blink::WebHelperPluginImpl* plugin)
-    {
-        OwnedPtrDeleter<blink::WebHelperPlugin>::deletePtr(plugin);
-    }
-};
-
-} // namespace WTF
-
 #endif // WebHelperPluginImpl_h