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

Side by Side Diff: content/test/layouttest_support.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, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/public/test/layouttest_support.h" 5 #include "content/public/test/layouttest_support.h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/lazy_instance.h" 8 #include "base/lazy_instance.h"
9 #include "content/browser/renderer_host/render_widget_host_impl.h" 9 #include "content/browser/renderer_host/render_widget_host_impl.h"
10 #include "content/common/gpu/image_transport_surface.h" 10 #include "content/common/gpu/image_transport_surface.h"
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 } 98 }
99 99
100 void SetMockDeviceOrientationData(const WebDeviceOrientationData& data) { 100 void SetMockDeviceOrientationData(const WebDeviceOrientationData& data) {
101 RendererWebKitPlatformSupportImpl:: 101 RendererWebKitPlatformSupportImpl::
102 SetMockDeviceOrientationDataForTesting(data); 102 SetMockDeviceOrientationDataForTesting(data);
103 } 103 }
104 104
105 void SetMockScreenOrientation( 105 void SetMockScreenOrientation(
106 RenderView* render_view, 106 RenderView* render_view,
107 const blink::WebScreenOrientationType& orientation) { 107 const blink::WebScreenOrientationType& orientation) {
108 static_cast<RenderViewImpl*>(render_view)
109 ->SetScreenOrientationForTesting(orientation);
110 // FIXME(ostap): Remove this when blink side gets updated.
111 RendererWebKitPlatformSupportImpl:: 108 RendererWebKitPlatformSupportImpl::
112 SetMockScreenOrientationForTesting(orientation); 109 SetMockScreenOrientationForTesting(render_view, orientation);
113 } 110 }
114 111
115 void ResetMockScreenOrientation() 112 void ResetMockScreenOrientation()
116 { 113 {
117 RendererWebKitPlatformSupportImpl::ResetMockScreenOrientationForTesting(); 114 RendererWebKitPlatformSupportImpl::ResetMockScreenOrientationForTesting();
118 } 115 }
119 116
120 void EnableRendererLayoutTestMode() { 117 void EnableRendererLayoutTestMode() {
121 RenderThreadImpl::current()->set_layout_test_mode(true); 118 RenderThreadImpl::current()->set_layout_test_mode(true);
122 } 119 }
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 result.append( 300 result.append(
304 DumpHistoryItem(entry->root_history_node(), 301 DumpHistoryItem(entry->root_history_node(),
305 8, 302 8,
306 index == current_index)); 303 index == current_index));
307 } 304 }
308 result.append("===============================================\n"); 305 result.append("===============================================\n");
309 return result; 306 return result;
310 } 307 }
311 308
312 } // namespace content 309 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698