OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/WebSerializedScriptVa
lue.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" |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 SimpleWebCookieJarImpl cookie_jar_; | 131 SimpleWebCookieJarImpl cookie_jar_; |
132 scoped_refptr<TestShellWebBlobRegistryImpl> blob_registry_; | 132 scoped_refptr<TestShellWebBlobRegistryImpl> blob_registry_; |
133 SimpleFileSystem file_system_; | 133 SimpleFileSystem file_system_; |
134 | 134 |
135 #if defined(OS_WIN) | 135 #if defined(OS_WIN) |
136 WebKit::WebThemeEngine* active_theme_engine_; | 136 WebKit::WebThemeEngine* active_theme_engine_; |
137 #endif | 137 #endif |
138 }; | 138 }; |
139 | 139 |
140 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ | 140 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ |
OLD | NEW |