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

Side by Side Diff: webkit/support/test_webkit_platform_support.cc

Issue 14651027: Move webkit/compositor_bindings into webkit/renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/support/test_webkit_platform_support.h ('k') | webkit/support/webkit_support.cc » ('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 "webkit/support/test_webkit_platform_support.h" 5 #include "webkit/support/test_webkit_platform_support.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "base/files/scoped_temp_dir.h" 9 #include "base/files/scoped_temp_dir.h"
10 #include "base/metrics/stats_counters.h" 10 #include "base/metrics/stats_counters.h"
(...skipping 14 matching lines...) Expand all
25 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" 25 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h"
26 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h" 26 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h"
27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDatabase.h" 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDatabase.h"
28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" 28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h"
29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h" 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h"
30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptController.h " 30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptController.h "
31 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" 31 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h"
32 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageEventDispat cher.h" 32 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageEventDispat cher.h"
33 #include "v8/include/v8.h" 33 #include "v8/include/v8.h"
34 #include "webkit/appcache/web_application_cache_host_impl.h" 34 #include "webkit/appcache/web_application_cache_host_impl.h"
35 #include "webkit/compositor_bindings/web_compositor_support_impl.h"
36 #include "webkit/compositor_bindings/web_layer_tree_view_impl_for_testing.h"
37 #include "webkit/database/vfs_backend.h" 35 #include "webkit/database/vfs_backend.h"
38 #include "webkit/glue/simple_webmimeregistry_impl.h" 36 #include "webkit/glue/simple_webmimeregistry_impl.h"
39 #include "webkit/glue/webclipboard_impl.h" 37 #include "webkit/glue/webclipboard_impl.h"
40 #include "webkit/glue/webkit_glue.h" 38 #include "webkit/glue/webkit_glue.h"
41 #include "webkit/glue/webkitplatformsupport_impl.h" 39 #include "webkit/glue/webkitplatformsupport_impl.h"
42 #include "webkit/gpu/test_context_provider_factory.h" 40 #include "webkit/gpu/test_context_provider_factory.h"
43 #include "webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h" 41 #include "webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h"
44 #include "webkit/gpu/webgraphicscontext3d_provider_impl.h" 42 #include "webkit/gpu/webgraphicscontext3d_provider_impl.h"
45 #include "webkit/plugins/npapi/plugin_list.h" 43 #include "webkit/plugins/npapi/plugin_list.h"
44 #include "webkit/renderer/compositor_bindings/web_compositor_support_impl.h"
45 #include "webkit/renderer/compositor_bindings/web_layer_tree_view_impl_for_testi ng.h"
46 #include "webkit/support/gc_extension.h" 46 #include "webkit/support/gc_extension.h"
47 #include "webkit/support/simple_database_system.h" 47 #include "webkit/support/simple_database_system.h"
48 #include "webkit/support/test_webmessageportchannel.h" 48 #include "webkit/support/test_webmessageportchannel.h"
49 #include "webkit/support/web_audio_device_mock.h" 49 #include "webkit/support/web_audio_device_mock.h"
50 #include "webkit/support/web_gesture_curve_mock.h" 50 #include "webkit/support/web_gesture_curve_mock.h"
51 #include "webkit/support/webkit_support.h" 51 #include "webkit/support/webkit_support.h"
52 #include "webkit/support/weburl_loader_mock_factory.h" 52 #include "webkit/support/weburl_loader_mock_factory.h"
53 #include "webkit/tools/test_shell/mock_webclipboard_impl.h" 53 #include "webkit/tools/test_shell/mock_webclipboard_impl.h"
54 #include "webkit/tools/test_shell/simple_appcache_system.h" 54 #include "webkit/tools/test_shell/simple_appcache_system.h"
55 #include "webkit/tools/test_shell/simple_file_system.h" 55 #include "webkit/tools/test_shell/simple_file_system.h"
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 return view.release(); 551 return view.release();
552 } 552 }
553 553
554 WebKit::WebLayerTreeView* 554 WebKit::WebLayerTreeView*
555 TestWebKitPlatformSupport::createLayerTreeViewForTesting( 555 TestWebKitPlatformSupport::createLayerTreeViewForTesting(
556 TestViewType type) { 556 TestViewType type) {
557 DCHECK_EQ(TestViewTypeUnitTest, type); 557 DCHECK_EQ(TestViewTypeUnitTest, type);
558 return createLayerTreeViewForTesting(); 558 return createLayerTreeViewForTesting();
559 } 559 }
560 560
OLDNEW
« no previous file with comments | « webkit/support/test_webkit_platform_support.h ('k') | webkit/support/webkit_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698