| 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 17 matching lines...) Expand all Loading... |
| 28 #include "third_party/WebKit/public/platform/WebStorageArea.h" | 28 #include "third_party/WebKit/public/platform/WebStorageArea.h" |
| 29 #include "third_party/WebKit/public/platform/WebStorageNamespace.h" | 29 #include "third_party/WebKit/public/platform/WebStorageNamespace.h" |
| 30 #include "third_party/WebKit/public/platform/WebString.h" | 30 #include "third_party/WebKit/public/platform/WebString.h" |
| 31 #include "third_party/WebKit/public/platform/WebURL.h" | 31 #include "third_party/WebKit/public/platform/WebURL.h" |
| 32 #include "v8/include/v8.h" | 32 #include "v8/include/v8.h" |
| 33 #include "webkit/browser/database/vfs_backend.h" | 33 #include "webkit/browser/database/vfs_backend.h" |
| 34 #include "webkit/common/gpu/test_context_provider_factory.h" | 34 #include "webkit/common/gpu/test_context_provider_factory.h" |
| 35 #include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.
h" | 35 #include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.
h" |
| 36 #include "webkit/common/gpu/webgraphicscontext3d_provider_impl.h" | 36 #include "webkit/common/gpu/webgraphicscontext3d_provider_impl.h" |
| 37 #include "webkit/glue/simple_webmimeregistry_impl.h" | 37 #include "webkit/glue/simple_webmimeregistry_impl.h" |
| 38 #include "webkit/glue/webclipboard_impl.h" | |
| 39 #include "webkit/glue/webkit_glue.h" | 38 #include "webkit/glue/webkit_glue.h" |
| 40 #include "webkit/glue/webkitplatformsupport_impl.h" | 39 #include "webkit/glue/webkitplatformsupport_impl.h" |
| 41 #include "webkit/plugins/npapi/plugin_list.h" | 40 #include "webkit/plugins/npapi/plugin_list.h" |
| 42 #include "webkit/renderer/appcache/web_application_cache_host_impl.h" | 41 #include "webkit/renderer/appcache/web_application_cache_host_impl.h" |
| 43 #include "webkit/renderer/compositor_bindings/web_compositor_support_impl.h" | 42 #include "webkit/renderer/compositor_bindings/web_compositor_support_impl.h" |
| 44 #include "webkit/support/gc_extension.h" | 43 #include "webkit/support/gc_extension.h" |
| 45 #include "webkit/support/mock_webclipboard_impl.h" | 44 #include "webkit/support/mock_webclipboard_impl.h" |
| 46 #include "webkit/support/simple_appcache_system.h" | 45 #include "webkit/support/simple_appcache_system.h" |
| 47 #include "webkit/support/simple_database_system.h" | 46 #include "webkit/support/simple_database_system.h" |
| 48 #include "webkit/support/simple_file_system.h" | 47 #include "webkit/support/simple_file_system.h" |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 return view.release(); | 515 return view.release(); |
| 517 } | 516 } |
| 518 | 517 |
| 519 WebKit::WebLayerTreeView* | 518 WebKit::WebLayerTreeView* |
| 520 TestWebKitPlatformSupport::createLayerTreeViewForTesting( | 519 TestWebKitPlatformSupport::createLayerTreeViewForTesting( |
| 521 TestViewType type) { | 520 TestViewType type) { |
| 522 DCHECK_EQ(TestViewTypeUnitTest, type); | 521 DCHECK_EQ(TestViewTypeUnitTest, type); |
| 523 return createLayerTreeViewForTesting(); | 522 return createLayerTreeViewForTesting(); |
| 524 } | 523 } |
| 525 | 524 |
| OLD | NEW |