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

Unified Diff: Source/web/WebLocalFrameImpl.cpp

Issue 1020453003: Oilpan: fix build after r192077. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebLocalFrameImpl.cpp
diff --git a/Source/web/WebLocalFrameImpl.cpp b/Source/web/WebLocalFrameImpl.cpp
index dcac2b12a6f5d9dc8aa7464cdbc4c46ac84a4c07..f1cf3d23ce479c32f6dafbfecac3ac435dd9efc1 100644
--- a/Source/web/WebLocalFrameImpl.cpp
+++ b/Source/web/WebLocalFrameImpl.cpp
@@ -565,9 +565,11 @@ private:
{
}
- RawPtrWillBeMember<LocalFrame> m_frame;
+ // FIXME: Oilpan: move (Suspendable)Task to the heap, so that
+ // this reference can be traced.
+ LocalFrame* m_frame;
int m_worldID;
- WillBeHeapVector<ScriptSourceCode> m_sources;
+ WillBePersistentHeapVector<ScriptSourceCode> m_sources;
int m_extensionGroup;
bool m_userGesture;
WebScriptExecutionCallback* m_callback;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698