| 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 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ | 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ |
| 6 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ | 6 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBFactory.h" | 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBFactory.h" |
| 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h" | 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h" |
| 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKeyPath.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKeyPath.h" |
| 13 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSerialize
dScriptValue.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSerialize
dScriptValue.h" |
| 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageNamespace.h
" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageNamespace.h
" |
| 15 #include "webkit/glue/webclipboard_impl.h" | 15 #include "webkit/glue/webclipboard_impl.h" |
| 16 #include "webkit/glue/webfileutilities_impl.h" | 16 #include "webkit/glue/webfileutilities_impl.h" |
| 17 #include "webkit/glue/webkit_glue.h" | 17 #include "webkit/glue/webkit_glue.h" |
| 18 #include "webkit/glue/webkitplatformsupport_impl.h" | 18 #include "webkit/glue/webkitplatformsupport_impl.h" |
| 19 #include "webkit/gpu/webgraphicscontext3d_in_process_impl.h" | 19 #include "webkit/gpu/webgraphicscontext3d_in_process_impl.h" |
| 20 #include "webkit/support/simple_database_system.h" | 20 #include "webkit/support/simple_database_system.h" |
| 21 #include "webkit/tools/test_shell/mock_webclipboard_impl.h" | 21 #include "webkit/tools/test_shell/mock_webclipboard_impl.h" |
| 22 #include "webkit/tools/test_shell/simple_appcache_system.h" | 22 #include "webkit/tools/test_shell/simple_appcache_system.h" |
| 23 #include "webkit/tools/test_shell/simple_clipboard_impl.h" | 23 #include "webkit/tools/test_shell/simple_clipboard_impl.h" |
| 24 #include "webkit/tools/test_shell/simple_dom_storage_system.h" |
| 24 #include "webkit/tools/test_shell/simple_file_system.h" | 25 #include "webkit/tools/test_shell/simple_file_system.h" |
| 25 #include "webkit/tools/test_shell/simple_resource_loader_bridge.h" | 26 #include "webkit/tools/test_shell/simple_resource_loader_bridge.h" |
| 26 #include "webkit/tools/test_shell/simple_webcookiejar_impl.h" | 27 #include "webkit/tools/test_shell/simple_webcookiejar_impl.h" |
| 27 #include "webkit/tools/test_shell/test_shell_webblobregistry_impl.h" | 28 #include "webkit/tools/test_shell/test_shell_webblobregistry_impl.h" |
| 28 #include "webkit/tools/test_shell/test_shell_webmimeregistry_impl.h" | 29 #include "webkit/tools/test_shell/test_shell_webmimeregistry_impl.h" |
| 29 | 30 |
| 30 #if defined(OS_WIN) | 31 #if defined(OS_WIN) |
| 31 #include "webkit/tools/test_shell/test_shell_webthemeengine.h" | 32 #include "webkit/tools/test_shell/test_shell_webthemeengine.h" |
| 32 #endif | 33 #endif |
| 33 | 34 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 | 123 |
| 123 private: | 124 private: |
| 124 scoped_ptr<webkit_glue::SimpleWebMimeRegistryImpl> mime_registry_; | 125 scoped_ptr<webkit_glue::SimpleWebMimeRegistryImpl> mime_registry_; |
| 125 MockWebClipboardImpl mock_clipboard_; | 126 MockWebClipboardImpl mock_clipboard_; |
| 126 SimpleClipboardClient clipboard_client_; | 127 SimpleClipboardClient clipboard_client_; |
| 127 webkit_glue::WebClipboardImpl real_clipboard_; | 128 webkit_glue::WebClipboardImpl real_clipboard_; |
| 128 webkit_glue::WebFileUtilitiesImpl file_utilities_; | 129 webkit_glue::WebFileUtilitiesImpl file_utilities_; |
| 129 ScopedTempDir appcache_dir_; | 130 ScopedTempDir appcache_dir_; |
| 130 SimpleAppCacheSystem appcache_system_; | 131 SimpleAppCacheSystem appcache_system_; |
| 131 SimpleDatabaseSystem database_system_; | 132 SimpleDatabaseSystem database_system_; |
| 133 SimpleDomStorageSystem dom_storage_system_; |
| 132 SimpleWebCookieJarImpl cookie_jar_; | 134 SimpleWebCookieJarImpl cookie_jar_; |
| 133 scoped_refptr<TestShellWebBlobRegistryImpl> blob_registry_; | 135 scoped_refptr<TestShellWebBlobRegistryImpl> blob_registry_; |
| 134 SimpleFileSystem file_system_; | 136 SimpleFileSystem file_system_; |
| 135 | 137 |
| 136 #if defined(OS_WIN) | 138 #if defined(OS_WIN) |
| 137 WebKit::WebThemeEngine* active_theme_engine_; | 139 WebKit::WebThemeEngine* active_theme_engine_; |
| 138 #endif | 140 #endif |
| 139 }; | 141 }; |
| 140 | 142 |
| 141 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ | 143 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ |
| OLD | NEW |