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

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

Issue 16046003: Move webkit/gpu into webkit/common/gpu (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix includes in content/common/gpu/client/gl_helper_* 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
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 15 matching lines...) Expand all
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/browser/database/vfs_backend.h" 35 #include "webkit/browser/database/vfs_backend.h"
36 #include "webkit/common/gpu/test_context_provider_factory.h"
37 #include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl. h"
38 #include "webkit/common/gpu/webgraphicscontext3d_provider_impl.h"
36 #include "webkit/glue/simple_webmimeregistry_impl.h" 39 #include "webkit/glue/simple_webmimeregistry_impl.h"
37 #include "webkit/glue/webclipboard_impl.h" 40 #include "webkit/glue/webclipboard_impl.h"
38 #include "webkit/glue/webkit_glue.h" 41 #include "webkit/glue/webkit_glue.h"
39 #include "webkit/glue/webkitplatformsupport_impl.h" 42 #include "webkit/glue/webkitplatformsupport_impl.h"
40 #include "webkit/gpu/test_context_provider_factory.h"
41 #include "webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h"
42 #include "webkit/gpu/webgraphicscontext3d_provider_impl.h"
43 #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" 44 #include "webkit/renderer/compositor_bindings/web_compositor_support_impl.h"
45 #include "webkit/support/gc_extension.h" 45 #include "webkit/support/gc_extension.h"
46 #include "webkit/support/simple_database_system.h" 46 #include "webkit/support/simple_database_system.h"
47 #include "webkit/support/test_webmessageportchannel.h" 47 #include "webkit/support/test_webmessageportchannel.h"
48 #include "webkit/support/web_audio_device_mock.h" 48 #include "webkit/support/web_audio_device_mock.h"
49 #include "webkit/support/web_gesture_curve_mock.h" 49 #include "webkit/support/web_gesture_curve_mock.h"
50 #include "webkit/support/web_layer_tree_view_impl_for_testing.h" 50 #include "webkit/support/web_layer_tree_view_impl_for_testing.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"
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 return view.release(); 535 return view.release();
536 } 536 }
537 537
538 WebKit::WebLayerTreeView* 538 WebKit::WebLayerTreeView*
539 TestWebKitPlatformSupport::createLayerTreeViewForTesting( 539 TestWebKitPlatformSupport::createLayerTreeViewForTesting(
540 TestViewType type) { 540 TestViewType type) {
541 DCHECK_EQ(TestViewTypeUnitTest, type); 541 DCHECK_EQ(TestViewTypeUnitTest, type);
542 return createLayerTreeViewForTesting(); 542 return createLayerTreeViewForTesting();
543 } 543 }
544 544
OLDNEW
« no previous file with comments | « webkit/renderer/compositor_bindings/compositor_bindings.gyp ('k') | webkit/support/web_layer_tree_view_impl_for_testing.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698