| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this |
| 2 // source code is governed by a BSD-style license that can be found in the | 2 // source code is governed by a BSD-style license that can be found in the |
| 3 // LICENSE file. | 3 // 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/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "base/scoped_temp_dir.h" | 10 #include "base/scoped_temp_dir.h" |
| 11 #include "base/stats_counters.h" | 11 #include "base/stats_counters.h" |
| 12 #include "base/string_util.h" | 12 #include "base/string_util.h" |
| 13 #include "media/base/media.h" | 13 #include "media/base/media.h" |
| 14 #include "webkit/api/public/WebData.h" | 14 #include "webkit/api/public/WebData.h" |
| 15 #include "webkit/api/public/WebKit.h" | 15 #include "webkit/api/public/WebKit.h" |
| 16 #include "webkit/api/public/WebScriptController.h" |
| 16 #include "webkit/api/public/WebStorageArea.h" | 17 #include "webkit/api/public/WebStorageArea.h" |
| 17 #include "webkit/api/public/WebStorageEventDispatcher.h" | 18 #include "webkit/api/public/WebStorageEventDispatcher.h" |
| 18 #include "webkit/api/public/WebStorageNamespace.h" | 19 #include "webkit/api/public/WebStorageNamespace.h" |
| 19 #include "webkit/api/public/WebString.h" | 20 #include "webkit/api/public/WebString.h" |
| 20 #include "webkit/api/public/WebURL.h" | 21 #include "webkit/api/public/WebURL.h" |
| 21 #include "webkit/appcache/web_application_cache_host_impl.h" | 22 #include "webkit/appcache/web_application_cache_host_impl.h" |
| 22 #include "webkit/database/vfs_backend.h" | 23 #include "webkit/database/vfs_backend.h" |
| 23 #include "webkit/extensions/v8/gears_extension.h" | 24 #include "webkit/extensions/v8/gears_extension.h" |
| 24 #include "webkit/extensions/v8/interval_extension.h" | 25 #include "webkit/extensions/v8/interval_extension.h" |
| 25 #include "webkit/glue/simple_webmimeregistry_impl.h" | 26 #include "webkit/glue/simple_webmimeregistry_impl.h" |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 SimpleAppCacheSystem appcache_system_; | 230 SimpleAppCacheSystem appcache_system_; |
| 230 SimpleDatabaseSystem database_system_; | 231 SimpleDatabaseSystem database_system_; |
| 231 scoped_ptr<WebKit::WebStorageEventDispatcher> dom_storage_event_dispatcher_; | 232 scoped_ptr<WebKit::WebStorageEventDispatcher> dom_storage_event_dispatcher_; |
| 232 | 233 |
| 233 #if defined(OS_WIN) | 234 #if defined(OS_WIN) |
| 234 WebKit::WebThemeEngine* active_theme_engine_; | 235 WebKit::WebThemeEngine* active_theme_engine_; |
| 235 #endif | 236 #endif |
| 236 }; | 237 }; |
| 237 | 238 |
| 238 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ | 239 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ |
| OLD | NEW |