| 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 {
|
|
|