Index: third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationControllerImpl.cpp |
diff --git a/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationControllerImpl.cpp b/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationControllerImpl.cpp |
index c9eafbe718749a514ea217ed5bec68e89fd75c2f..064a51aa1189f129b922668b80f12cea5aa60981 100644 |
--- a/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationControllerImpl.cpp |
+++ b/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationControllerImpl.cpp |
@@ -139,7 +139,7 @@ void ScreenOrientationControllerImpl::notifyOrientationChanged() { |
for (Frame* child = frame()->tree().firstChild(); child; |
child = child->tree().nextSibling()) { |
if (child->isLocalFrame()) |
- childFrames.append(toLocalFrame(child)); |
+ childFrames.push_back(toLocalFrame(child)); |
} |
// Notify current orientation object. |