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

Side by Side Diff: content/test/layouttest_support.cc

Issue 1538803002: Migrates battery_status from content/renderer/ to WebKit/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Synced. Created 4 years, 10 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
« no previous file with comments | « content/shell/renderer/layout_test/blink_test_runner.cc ('k') | media/blink/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <stddef.h> 7 #include <stddef.h>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 13 matching lines...) Expand all
24 #include "content/public/renderer/renderer_gamepad_provider.h" 24 #include "content/public/renderer/renderer_gamepad_provider.h"
25 #include "content/renderer/fetchers/manifest_fetcher.h" 25 #include "content/renderer/fetchers/manifest_fetcher.h"
26 #include "content/renderer/history_entry.h" 26 #include "content/renderer/history_entry.h"
27 #include "content/renderer/history_serialization.h" 27 #include "content/renderer/history_serialization.h"
28 #include "content/renderer/render_frame_impl.h" 28 #include "content/renderer/render_frame_impl.h"
29 #include "content/renderer/render_thread_impl.h" 29 #include "content/renderer/render_thread_impl.h"
30 #include "content/renderer/render_view_impl.h" 30 #include "content/renderer/render_view_impl.h"
31 #include "content/renderer/renderer_blink_platform_impl.h" 31 #include "content/renderer/renderer_blink_platform_impl.h"
32 #include "content/shell/common/shell_switches.h" 32 #include "content/shell/common/shell_switches.h"
33 #include "device/bluetooth/bluetooth_adapter.h" 33 #include "device/bluetooth/bluetooth_adapter.h"
34 #include "third_party/WebKit/public/platform/WebBatteryStatus.h"
35 #include "third_party/WebKit/public/platform/WebGamepads.h" 34 #include "third_party/WebKit/public/platform/WebGamepads.h"
36 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic eMotionData.h" 35 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic eMotionData.h"
37 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic eOrientationData.h" 36 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic eOrientationData.h"
38 #include "third_party/WebKit/public/web/WebHistoryItem.h" 37 #include "third_party/WebKit/public/web/WebHistoryItem.h"
39 #include "third_party/WebKit/public/web/WebView.h" 38 #include "third_party/WebKit/public/web/WebView.h"
40 39
41 #if defined(OS_MACOSX) 40 #if defined(OS_MACOSX)
42 #include "content/browser/frame_host/popup_menu_helper_mac.h" 41 #include "content/browser/frame_host/popup_menu_helper_mac.h"
43 #elif defined(OS_WIN) 42 #elif defined(OS_WIN)
44 #include "content/child/font_warmup_win.h" 43 #include "content/child/font_warmup_win.h"
45 #include "content/public/common/dwrite_font_platform_win.h" 44 #include "content/public/common/dwrite_font_platform_win.h"
46 #include "third_party/WebKit/public/web/win/WebFontRendering.h" 45 #include "third_party/WebKit/public/web/win/WebFontRendering.h"
47 #include "third_party/skia/include/ports/SkFontMgr.h" 46 #include "third_party/skia/include/ports/SkFontMgr.h"
48 #include "third_party/skia/include/ports/SkTypeface_win.h" 47 #include "third_party/skia/include/ports/SkTypeface_win.h"
49 #include "ui/gfx/win/direct_write.h" 48 #include "ui/gfx/win/direct_write.h"
50 #endif 49 #endif
51 50
52 using blink::WebBatteryStatus;
53 using blink::WebDeviceMotionData; 51 using blink::WebDeviceMotionData;
54 using blink::WebDeviceOrientationData; 52 using blink::WebDeviceOrientationData;
55 using blink::WebGamepad; 53 using blink::WebGamepad;
56 using blink::WebGamepads; 54 using blink::WebGamepads;
57 using blink::WebRect; 55 using blink::WebRect;
58 using blink::WebSize; 56 using blink::WebSize;
59 57
60 namespace content { 58 namespace content {
61 59
62 namespace { 60 namespace {
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 } 158 }
161 159
162 void SetMockDeviceMotionData(const WebDeviceMotionData& data) { 160 void SetMockDeviceMotionData(const WebDeviceMotionData& data) {
163 RendererBlinkPlatformImpl::SetMockDeviceMotionDataForTesting(data); 161 RendererBlinkPlatformImpl::SetMockDeviceMotionDataForTesting(data);
164 } 162 }
165 163
166 void SetMockDeviceOrientationData(const WebDeviceOrientationData& data) { 164 void SetMockDeviceOrientationData(const WebDeviceOrientationData& data) {
167 RendererBlinkPlatformImpl::SetMockDeviceOrientationDataForTesting(data); 165 RendererBlinkPlatformImpl::SetMockDeviceOrientationDataForTesting(data);
168 } 166 }
169 167
170 void MockBatteryStatusChanged(const WebBatteryStatus& status) {
171 RenderThreadImpl::current()
172 ->blink_platform_impl()
173 ->MockBatteryStatusChangedForTesting(status);
174 }
175
176 void EnableRendererLayoutTestMode() { 168 void EnableRendererLayoutTestMode() {
177 RenderThreadImpl::current()->set_layout_test_mode(true); 169 RenderThreadImpl::current()->set_layout_test_mode(true);
178 170
179 #if defined(OS_WIN) 171 #if defined(OS_WIN)
180 if (gfx::win::ShouldUseDirectWrite()) { 172 if (gfx::win::ShouldUseDirectWrite()) {
181 if (ShouldUseDirectWriteFontProxyFieldTrial()) 173 if (ShouldUseDirectWriteFontProxyFieldTrial())
182 RegisterSideloadedTypefaces(SkFontMgr_New_DirectWrite()); 174 RegisterSideloadedTypefaces(SkFontMgr_New_DirectWrite());
183 else 175 else
184 RegisterSideloadedTypefaces(GetPreSandboxWarmupFontMgr()); 176 RegisterSideloadedTypefaces(GetPreSandboxWarmupFontMgr());
185 } 177 }
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 result.append( 453 result.append(
462 DumpHistoryItem(entry->root_history_node(), 454 DumpHistoryItem(entry->root_history_node(),
463 8, 455 8,
464 index == current_index)); 456 index == current_index));
465 } 457 }
466 result.append("===============================================\n"); 458 result.append("===============================================\n");
467 return result; 459 return result;
468 } 460 }
469 461
470 } // namespace content 462 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/renderer/layout_test/blink_test_runner.cc ('k') | media/blink/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698