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

Unified Diff: third_party/WebKit/Source/web/WebPluginLoadObserver.cpp

Issue 1442643003: Oilpan: move WebPluginLoadObserver to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: non-oilpan compile fix Created 5 years, 1 month 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/WebPluginLoadObserver.cpp
diff --git a/third_party/WebKit/Source/web/WebPluginLoadObserver.cpp b/third_party/WebKit/Source/web/WebPluginLoadObserver.cpp
index 8e1adfcd798cb70c9f5b29e67bb92c14c3baf065..a20e4c2d7ce9ba1575a0c789168f3ed3ab11e2ba 100644
--- a/third_party/WebKit/Source/web/WebPluginLoadObserver.cpp
+++ b/third_party/WebKit/Source/web/WebPluginLoadObserver.cpp
@@ -38,8 +38,23 @@ namespace blink {
WebPluginLoadObserver::~WebPluginLoadObserver()
{
- if (m_pluginContainer)
- m_pluginContainer->willDestroyPluginLoadObserver(this);
+#if !ENABLE(OILPAN)
haraken 2015/11/12 15:51:00 Can we add ASSERT(!m_pluginContainer) to ENABLE(OI
sof 2015/11/12 18:15:35 Don't think so; with this and WebPluginContainerIm
+ dispose();
+#endif
+}
+
+void WebPluginLoadObserver::dispose()
+{
+ if (!m_pluginContainer)
+ return;
+
+ m_pluginContainer->willDestroyPluginLoadObserver(this);
+ m_pluginContainer = nullptr;
+}
+
+DEFINE_TRACE(WebPluginLoadObserver)
+{
+ visitor->trace(m_pluginContainer);
}
void WebPluginLoadObserver::didFinishLoading()

Powered by Google App Engine
This is Rietveld 408576698