| OLD | NEW |
| 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 16 matching lines...) Expand all Loading... |
| 27 #include "third_party/WebKit/public/web/WebSecurityPolicy.h" | 27 #include "third_party/WebKit/public/web/WebSecurityPolicy.h" |
| 28 #include "third_party/WebKit/public/web/WebStorageEventDispatcher.h" | 28 #include "third_party/WebKit/public/web/WebStorageEventDispatcher.h" |
| 29 #include "v8/include/v8.h" | 29 #include "v8/include/v8.h" |
| 30 #include "webkit/browser/database/vfs_backend.h" | 30 #include "webkit/browser/database/vfs_backend.h" |
| 31 #include "webkit/child/webkitplatformsupport_impl.h" | 31 #include "webkit/child/webkitplatformsupport_impl.h" |
| 32 #include "webkit/common/gpu/test_context_provider_factory.h" | 32 #include "webkit/common/gpu/test_context_provider_factory.h" |
| 33 #include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.
h" | 33 #include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.
h" |
| 34 #include "webkit/common/gpu/webgraphicscontext3d_provider_impl.h" | 34 #include "webkit/common/gpu/webgraphicscontext3d_provider_impl.h" |
| 35 #include "webkit/glue/simple_webmimeregistry_impl.h" | 35 #include "webkit/glue/simple_webmimeregistry_impl.h" |
| 36 #include "webkit/glue/webkit_glue.h" | 36 #include "webkit/glue/webkit_glue.h" |
| 37 #include "webkit/renderer/appcache/web_application_cache_host_impl.h" | |
| 38 #include "webkit/renderer/compositor_bindings/web_compositor_support_impl.h" | 37 #include "webkit/renderer/compositor_bindings/web_compositor_support_impl.h" |
| 39 #include "webkit/support/gc_extension.h" | 38 #include "webkit/support/gc_extension.h" |
| 40 #include "webkit/support/mock_webclipboard_impl.h" | 39 #include "webkit/support/mock_webclipboard_impl.h" |
| 41 #include "webkit/support/web_gesture_curve_mock.h" | 40 #include "webkit/support/web_gesture_curve_mock.h" |
| 42 #include "webkit/support/web_layer_tree_view_impl_for_testing.h" | 41 #include "webkit/support/web_layer_tree_view_impl_for_testing.h" |
| 43 #include "webkit/support/weburl_loader_mock_factory.h" | 42 #include "webkit/support/weburl_loader_mock_factory.h" |
| 44 | 43 |
| 45 #if defined(OS_WIN) | 44 #if defined(OS_WIN) |
| 46 #include "third_party/WebKit/public/platform/win/WebThemeEngine.h" | 45 #include "third_party/WebKit/public/platform/win/WebThemeEngine.h" |
| 47 #elif defined(OS_MACOSX) | 46 #elif defined(OS_MACOSX) |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 return view.release(); | 337 return view.release(); |
| 339 } | 338 } |
| 340 | 339 |
| 341 WebKit::WebLayerTreeView* | 340 WebKit::WebLayerTreeView* |
| 342 TestWebKitPlatformSupport::createLayerTreeViewForTesting( | 341 TestWebKitPlatformSupport::createLayerTreeViewForTesting( |
| 343 TestViewType type) { | 342 TestViewType type) { |
| 344 DCHECK_EQ(TestViewTypeUnitTest, type); | 343 DCHECK_EQ(TestViewTypeUnitTest, type); |
| 345 return createLayerTreeViewForTesting(); | 344 return createLayerTreeViewForTesting(); |
| 346 } | 345 } |
| 347 | 346 |
| OLD | NEW |