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

Unified Diff: third_party/WebKit/Source/core/html/HTMLPlugInElement.h

Issue 1517993004: Oilpan: simplify plugin container finalization. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: simplify away disconnectContentFrame override Created 5 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/core/html/HTMLPlugInElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLPlugInElement.h b/third_party/WebKit/Source/core/html/HTMLPlugInElement.h
index afe27dc4c242ec9e98ae7c190e5b7283a30c9fe6..c77c088baf8629f039cd0e5ee488f35eafbe4201 100644
--- a/third_party/WebKit/Source/core/html/HTMLPlugInElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLPlugInElement.h
@@ -46,10 +46,6 @@ class CORE_EXPORT HTMLPlugInElement : public HTMLFrameOwnerElement {
public:
~HTMLPlugInElement() override;
DECLARE_VIRTUAL_TRACE();
-#if ENABLE(OILPAN)
- void disconnectContentFrame() override;
- void shouldDisposePlugin();
-#endif
void resetInstance();
SharedPersistent<v8::Object>* pluginWrapper();
@@ -137,12 +133,6 @@ private:
bool wouldLoadAsNetscapePlugin(const String& url, const String& serviceType);
void setPersistedPluginWidget(Widget*);
- PassRefPtrWillBeRawPtr<Widget> releasePersistedPluginWidget();
-
-#if ENABLE(OILPAN)
- bool unregisterAsRenderlessIfNeeded();
- void registerAsRenderless(Widget*);
-#endif
mutable RefPtr<SharedPersistent<v8::Object>> m_pluginWrapper;
NPObject* m_NPObject;

Powered by Google App Engine
This is Rietveld 408576698