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

Side by Side Diff: content/shell/renderer/layout_test/layout_test_content_renderer_client.cc

Issue 2707183003: Move //components/test_runner back into //content/shell (Closed)
Patch Set: Trim DEPS Created 3 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
OLDNEW
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2014 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/shell/renderer/layout_test/layout_test_content_renderer_client .h" 5 #include "content/shell/renderer/layout_test/layout_test_content_renderer_client .h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/debug/debugger.h" 9 #include "base/debug/debugger.h"
10 #include "base/memory/ptr_util.h" 10 #include "base/memory/ptr_util.h"
11 #include "components/test_runner/mock_credential_manager_client.h"
12 #include "components/test_runner/web_frame_test_proxy.h"
13 #include "components/test_runner/web_test_interfaces.h"
14 #include "components/test_runner/web_test_runner.h"
15 #include "components/test_runner/web_view_test_proxy.h"
16 #include "components/web_cache/renderer/web_cache_impl.h" 11 #include "components/web_cache/renderer/web_cache_impl.h"
17 #include "content/public/common/content_constants.h" 12 #include "content/public/common/content_constants.h"
18 #include "content/public/common/content_switches.h" 13 #include "content/public/common/content_switches.h"
19 #include "content/public/renderer/render_frame.h" 14 #include "content/public/renderer/render_frame.h"
20 #include "content/public/renderer/render_thread.h" 15 #include "content/public/renderer/render_thread.h"
21 #include "content/public/renderer/render_view.h" 16 #include "content/public/renderer/render_view.h"
22 #include "content/public/test/layouttest_support.h" 17 #include "content/public/test/layouttest_support.h"
23 #include "content/shell/common/layout_test/layout_test_switches.h" 18 #include "content/shell/common/layout_test/layout_test_switches.h"
24 #include "content/shell/common/shell_switches.h" 19 #include "content/shell/common/shell_switches.h"
25 #include "content/shell/renderer/layout_test/blink_test_helpers.h" 20 #include "content/shell/renderer/layout_test/blink_test_helpers.h"
26 #include "content/shell/renderer/layout_test/blink_test_runner.h" 21 #include "content/shell/renderer/layout_test/blink_test_runner.h"
27 #include "content/shell/renderer/layout_test/interface_registry_js_wrapper.h" 22 #include "content/shell/renderer/layout_test/interface_registry_js_wrapper.h"
28 #include "content/shell/renderer/layout_test/layout_test_render_frame_observer.h " 23 #include "content/shell/renderer/layout_test/layout_test_render_frame_observer.h "
29 #include "content/shell/renderer/layout_test/layout_test_render_thread_observer. h" 24 #include "content/shell/renderer/layout_test/layout_test_render_thread_observer. h"
30 #include "content/shell/renderer/layout_test/test_media_stream_renderer_factory. h" 25 #include "content/shell/renderer/layout_test/test_media_stream_renderer_factory. h"
31 #include "content/shell/renderer/shell_render_view_observer.h" 26 #include "content/shell/renderer/shell_render_view_observer.h"
27 #include "content/shell/test_runner/mock_credential_manager_client.h"
28 #include "content/shell/test_runner/web_frame_test_proxy.h"
29 #include "content/shell/test_runner/web_test_interfaces.h"
30 #include "content/shell/test_runner/web_test_runner.h"
31 #include "content/shell/test_runner/web_view_test_proxy.h"
32 #include "content/test/mock_webclipboard_impl.h" 32 #include "content/test/mock_webclipboard_impl.h"
33 #include "gin/modules/module_registry.h" 33 #include "gin/modules/module_registry.h"
34 #include "media/media_features.h" 34 #include "media/media_features.h"
35 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" 35 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h"
36 #include "third_party/WebKit/public/web/WebFrameWidget.h" 36 #include "third_party/WebKit/public/web/WebFrameWidget.h"
37 #include "third_party/WebKit/public/web/WebKit.h" 37 #include "third_party/WebKit/public/web/WebKit.h"
38 #include "third_party/WebKit/public/web/WebPluginParams.h" 38 #include "third_party/WebKit/public/web/WebPluginParams.h"
39 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" 39 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
40 #include "third_party/WebKit/public/web/WebTestingSupport.h" 40 #include "third_party/WebKit/public/web/WebTestingSupport.h"
41 #include "third_party/WebKit/public/web/WebView.h" 41 #include "third_party/WebKit/public/web/WebView.h"
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 switches::kStableReleaseMode)) { 278 switches::kStableReleaseMode)) {
279 blink::WebRuntimeFeatures::enableTestOnlyFeatures(true); 279 blink::WebRuntimeFeatures::enableTestOnlyFeatures(true);
280 } 280 }
281 if (base::CommandLine::ForCurrentProcess()->HasSwitch( 281 if (base::CommandLine::ForCurrentProcess()->HasSwitch(
282 switches::kEnableFontAntialiasing)) { 282 switches::kEnableFontAntialiasing)) {
283 blink::setFontAntialiasingEnabledForTest(true); 283 blink::setFontAntialiasingEnabledForTest(true);
284 } 284 }
285 } 285 }
286 286
287 } // namespace content 287 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698