Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: third_party/WebKit/Source/web/WebHelperPluginImpl.h

Issue 2886113002: Introduce WebPluginContainerBase to abstract WebPluginContainerImpl. (Closed)
Patch Set: Rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/WebHelperPluginImpl.h
diff --git a/third_party/WebKit/Source/web/WebHelperPluginImpl.h b/third_party/WebKit/Source/web/WebHelperPluginImpl.h
index c8698dd32633426cba97553f29cfa39091c29f02..d9b4403af4148f57923dbcfc28f0d28474e46e18 100644
--- a/third_party/WebKit/Source/web/WebHelperPluginImpl.h
+++ b/third_party/WebKit/Source/web/WebHelperPluginImpl.h
@@ -42,7 +42,7 @@ namespace blink {
class HTMLObjectElement;
class WebLocalFrameBase;
-class WebPluginContainerImpl;
+class WebPluginContainerBase;
// Utility class to host helper plugins for media. Internally, it creates a
// detached HTMLPluginElement to host the plugin and uses
@@ -66,7 +66,7 @@ class WebHelperPluginImpl final : public WebHelperPlugin {
Timer<WebHelperPluginImpl> destruction_timer_;
Persistent<HTMLObjectElement> object_element_;
- Persistent<WebPluginContainerImpl> plugin_container_;
+ Persistent<WebPluginContainerBase> plugin_container_;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698