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

Unified Diff: content/renderer/renderer_webkitplatformsupport_impl.cc

Issue 302553007: Call RenderViewImpl::SetScreenOrientationForTesting to make sure that events are not sent when orie… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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
Index: content/renderer/renderer_webkitplatformsupport_impl.cc
diff --git a/content/renderer/renderer_webkitplatformsupport_impl.cc b/content/renderer/renderer_webkitplatformsupport_impl.cc
index 433cca128460c80fe3c84eeac8fa56c3714c8fa0..9310f0cbdd629bd016cdabe2bc6d38424d5e6a77 100644
--- a/content/renderer/renderer_webkitplatformsupport_impl.cc
+++ b/content/renderer/renderer_webkitplatformsupport_impl.cc
@@ -1083,6 +1083,14 @@ void RendererWebKitPlatformSupportImpl::ResetMockScreenOrientationForTesting()
g_test_screen_orientation_controller.Get().ResetData();
}
+// static
+void
+RendererWebKitPlatformSupportImpl::ResetMockScreenOrientationRenderView() {
+ if (!(g_test_screen_orientation_controller == 0)) {
Inactive 2014/05/28 12:02:20 nit: useless curly brackets (I don't know if this
ostap 2014/05/28 19:17:05 Done.
+ g_test_screen_orientation_controller.Get().ResetRenderView();
+ }
+}
+
//------------------------------------------------------------------------------
void RendererWebKitPlatformSupportImpl::setDeviceOrientationListener(
@@ -1164,9 +1172,10 @@ void RendererWebKitPlatformSupportImpl::unlockOrientation() {
// static
void RendererWebKitPlatformSupportImpl::SetMockScreenOrientationForTesting(
+ RenderView* render_view,
blink::WebScreenOrientationType orientation) {
g_test_screen_orientation_controller.Get()
- .UpdateDeviceOrientation(orientation);
+ .UpdateDeviceOrientation(render_view, orientation);
}
//------------------------------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698