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

Unified Diff: Source/core/frame/LocalDOMWindow.cpp

Issue 648543004: Oilpan: fix build after r183495. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/core/frame/LocalDOMWindow.cpp
diff --git a/Source/core/frame/LocalDOMWindow.cpp b/Source/core/frame/LocalDOMWindow.cpp
index be335f8d485b6f5a66277ef79b91653f82abb2ab..11e9feba86c8bfdd7d0e7b51731682993e8ceecb 100644
--- a/Source/core/frame/LocalDOMWindow.cpp
+++ b/Source/core/frame/LocalDOMWindow.cpp
@@ -609,7 +609,7 @@ void LocalDOMWindow::sendOrientationChangeEvent()
// Before dispatching the event, build a list of the child frames to
// also send the event to, to mitigate side effects from event handlers
// potentially interfering with others.
- WillBeHeapVector<RefPtr<Frame> > childFrames;
+ WillBeHeapVector<RefPtrWillBeMember<Frame> > childFrames;
for (Frame* child = m_frame->tree().firstChild(); child; child = child->tree().nextSibling()) {
childFrames.append(child);
}
« 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