| 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" |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 virtual webkit_glue::WebSocketStreamHandleBridge* CreateWebSocketBridge( | 102 virtual webkit_glue::WebSocketStreamHandleBridge* CreateWebSocketBridge( |
| 103 WebKit::WebSocketStreamHandle* handle, | 103 WebKit::WebSocketStreamHandle* handle, |
| 104 webkit_glue::WebSocketStreamHandleDelegate* delegate) OVERRIDE; | 104 webkit_glue::WebSocketStreamHandleDelegate* delegate) OVERRIDE; |
| 105 | 105 |
| 106 private: | 106 private: |
| 107 scoped_ptr<webkit_glue::SimpleWebMimeRegistryImpl> mime_registry_; | 107 scoped_ptr<webkit_glue::SimpleWebMimeRegistryImpl> mime_registry_; |
| 108 MockWebClipboardImpl mock_clipboard_; | 108 MockWebClipboardImpl mock_clipboard_; |
| 109 SimpleClipboardClient clipboard_client_; | 109 SimpleClipboardClient clipboard_client_; |
| 110 webkit_glue::WebClipboardImpl real_clipboard_; | 110 webkit_glue::WebClipboardImpl real_clipboard_; |
| 111 webkit_glue::WebFileUtilitiesImpl file_utilities_; | 111 webkit_glue::WebFileUtilitiesImpl file_utilities_; |
| 112 ScopedTempDir appcache_dir_; | 112 base::ScopedTempDir appcache_dir_; |
| 113 SimpleAppCacheSystem appcache_system_; | 113 SimpleAppCacheSystem appcache_system_; |
| 114 SimpleDatabaseSystem database_system_; | 114 SimpleDatabaseSystem database_system_; |
| 115 SimpleDomStorageSystem dom_storage_system_; | 115 SimpleDomStorageSystem dom_storage_system_; |
| 116 SimpleWebCookieJarImpl cookie_jar_; | 116 SimpleWebCookieJarImpl cookie_jar_; |
| 117 scoped_refptr<TestShellWebBlobRegistryImpl> blob_registry_; | 117 scoped_refptr<TestShellWebBlobRegistryImpl> blob_registry_; |
| 118 SimpleFileSystem file_system_; | 118 SimpleFileSystem file_system_; |
| 119 | 119 |
| 120 #if defined(OS_WIN) | 120 #if defined(OS_WIN) |
| 121 WebKit::WebThemeEngine* active_theme_engine_; | 121 WebKit::WebThemeEngine* active_theme_engine_; |
| 122 #endif | 122 #endif |
| 123 }; | 123 }; |
| 124 | 124 |
| 125 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ | 125 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ |
| OLD | NEW |