OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/utf_string_conversions.h" |
8 #include "third_party/WebKit/WebKit/chromium/public/WebGraphicsContext3D.h" | 9 #include "third_party/WebKit/WebKit/chromium/public/WebGraphicsContext3D.h" |
9 #include "third_party/WebKit/WebKit/chromium/public/WebIDBFactory.h" | 10 #include "third_party/WebKit/WebKit/chromium/public/WebIDBFactory.h" |
10 #include "third_party/WebKit/WebKit/chromium/public/WebStorageNamespace.h" | 11 #include "third_party/WebKit/WebKit/chromium/public/WebStorageNamespace.h" |
11 #include "webkit/glue/webclipboard_impl.h" | 12 #include "webkit/glue/webclipboard_impl.h" |
12 #include "webkit/glue/webfilesystem_impl.h" | 13 #include "webkit/glue/webfilesystem_impl.h" |
13 #include "webkit/glue/webkit_glue.h" | 14 #include "webkit/glue/webkit_glue.h" |
14 #include "webkit/glue/webkitclient_impl.h" | 15 #include "webkit/glue/webkitclient_impl.h" |
15 #include "webkit/tools/test_shell/mock_webclipboard_impl.h" | 16 #include "webkit/tools/test_shell/mock_webclipboard_impl.h" |
16 #include "webkit/tools/test_shell/simple_appcache_system.h" | 17 #include "webkit/tools/test_shell/simple_appcache_system.h" |
17 #include "webkit/tools/test_shell/simple_database_system.h" | 18 #include "webkit/tools/test_shell/simple_database_system.h" |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 SimpleAppCacheSystem appcache_system_; | 141 SimpleAppCacheSystem appcache_system_; |
141 SimpleDatabaseSystem database_system_; | 142 SimpleDatabaseSystem database_system_; |
142 SimpleWebCookieJarImpl cookie_jar_; | 143 SimpleWebCookieJarImpl cookie_jar_; |
143 | 144 |
144 #if defined(OS_WIN) | 145 #if defined(OS_WIN) |
145 WebKit::WebThemeEngine* active_theme_engine_; | 146 WebKit::WebThemeEngine* active_theme_engine_; |
146 #endif | 147 #endif |
147 }; | 148 }; |
148 | 149 |
149 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ | 150 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ |
OLD | NEW |