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

Unified Diff: third_party/WebKit/Source/web/WebPluginContainerImpl.h

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/WebPluginContainerImpl.h
diff --git a/third_party/WebKit/Source/web/WebPluginContainerImpl.h b/third_party/WebKit/Source/web/WebPluginContainerImpl.h
index eaff5bd008f455b194b73e719076d52d2009d9e8..0a340c7534011c3ee7783f6e047b958e733e26cd 100644
--- a/third_party/WebKit/Source/web/WebPluginContainerImpl.h
+++ b/third_party/WebKit/Source/web/WebPluginContainerImpl.h
@@ -198,7 +198,11 @@ private:
RawPtrWillBeMember<HTMLPlugInElement> m_element;
WebPlugin* m_webPlugin;
+#if ENABLE(OILPAN)
+ HeapLinkedHashSet<WeakMember<WebPluginLoadObserver>> m_pluginLoadObservers;
+#else
Vector<WebPluginLoadObserver*> m_pluginLoadObservers;
+#endif
WebLayer* m_webLayer;

Powered by Google App Engine
This is Rietveld 408576698