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

Unified Diff: third_party/WebKit/Source/modules/plugins/DOMPlugin.cpp

Issue 2591043004: Replace DOMWindowProperty in modules/plugins/ with ContextClient (Closed)
Patch Set: Created 4 years 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/modules/plugins/DOMPlugin.cpp
diff --git a/third_party/WebKit/Source/modules/plugins/DOMPlugin.cpp b/third_party/WebKit/Source/modules/plugins/DOMPlugin.cpp
index 6351d4b6be5d8c2b7ba7ef6d276d857246c6ad24..6c21bf157ce9404849c8cb22644c863a769e783e 100644
--- a/third_party/WebKit/Source/modules/plugins/DOMPlugin.cpp
+++ b/third_party/WebKit/Source/modules/plugins/DOMPlugin.cpp
@@ -25,12 +25,12 @@
namespace blink {
DOMPlugin::DOMPlugin(PluginData* pluginData, LocalFrame* frame, unsigned index)
- : DOMWindowProperty(frame), m_pluginData(pluginData), m_index(index) {}
+ : ContextClient(frame), m_pluginData(pluginData), m_index(index) {}
DOMPlugin::~DOMPlugin() {}
DEFINE_TRACE(DOMPlugin) {
- DOMWindowProperty::trace(visitor);
+ ContextClient::trace(visitor);
}
String DOMPlugin::name() const {
« no previous file with comments | « third_party/WebKit/Source/modules/plugins/DOMPlugin.h ('k') | third_party/WebKit/Source/modules/plugins/DOMPluginArray.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698