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

Unified Diff: third_party/WebKit/Source/modules/plugins/DOMMimeType.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/DOMMimeType.cpp
diff --git a/third_party/WebKit/Source/modules/plugins/DOMMimeType.cpp b/third_party/WebKit/Source/modules/plugins/DOMMimeType.cpp
index 94e4238ed73fd3eba0fbfd14d9ca3942c8ee002e..4e339a275967d48db8a1ad4474793b6e796b9deb 100644
--- a/third_party/WebKit/Source/modules/plugins/DOMMimeType.cpp
+++ b/third_party/WebKit/Source/modules/plugins/DOMMimeType.cpp
@@ -30,12 +30,12 @@ namespace blink {
DOMMimeType::DOMMimeType(PassRefPtr<PluginData> pluginData,
LocalFrame* frame,
unsigned index)
- : DOMWindowProperty(frame), m_pluginData(pluginData), m_index(index) {}
+ : ContextClient(frame), m_pluginData(pluginData), m_index(index) {}
DOMMimeType::~DOMMimeType() {}
DEFINE_TRACE(DOMMimeType) {
- DOMWindowProperty::trace(visitor);
+ ContextClient::trace(visitor);
}
const String& DOMMimeType::type() const {
« no previous file with comments | « third_party/WebKit/Source/modules/plugins/DOMMimeType.h ('k') | third_party/WebKit/Source/modules/plugins/DOMMimeTypeArray.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698