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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 virtual WebKit::WebString queryLocalizedString( | 69 virtual WebKit::WebString queryLocalizedString( |
70 WebKit::WebLocalizedString::Name name, | 70 WebKit::WebLocalizedString::Name name, |
71 const WebKit::WebString& value1, | 71 const WebKit::WebString& value1, |
72 const WebKit::WebString& value2) OVERRIDE; | 72 const WebKit::WebString& value2) OVERRIDE; |
73 | 73 |
74 virtual WebKit::WebString defaultLocale() OVERRIDE; | 74 virtual WebKit::WebString defaultLocale() OVERRIDE; |
75 | 75 |
76 virtual WebKit::WebStorageNamespace* createLocalStorageNamespace( | 76 virtual WebKit::WebStorageNamespace* createLocalStorageNamespace( |
77 const WebKit::WebString& path, unsigned quota) OVERRIDE; | 77 const WebKit::WebString& path, unsigned quota) OVERRIDE; |
78 | 78 |
79 virtual void dispatchStorageEvent(const WebKit::WebString& key, | |
80 const WebKit::WebString& old_value, | |
81 const WebKit::WebString& new_value, | |
82 const WebKit::WebString& origin, | |
83 const WebKit::WebURL& url, | |
84 bool is_local_storage) OVERRIDE; | |
85 virtual WebKit::WebIDBFactory* idbFactory() OVERRIDE; | 79 virtual WebKit::WebIDBFactory* idbFactory() OVERRIDE; |
86 | 80 |
87 virtual void createIDBKeysFromSerializedValuesAndKeyPath( | 81 virtual void createIDBKeysFromSerializedValuesAndKeyPath( |
88 const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values, | 82 const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values, |
89 const WebKit::WebString& keyPath, | 83 const WebKit::WebString& keyPath, |
90 WebKit::WebVector<WebKit::WebIDBKey>& keys_out) OVERRIDE; | 84 WebKit::WebVector<WebKit::WebIDBKey>& keys_out) OVERRIDE; |
91 | 85 |
92 virtual WebKit::WebSerializedScriptValue injectIDBKeyIntoSerializedValue( | 86 virtual WebKit::WebSerializedScriptValue injectIDBKeyIntoSerializedValue( |
93 const WebKit::WebIDBKey& key, | 87 const WebKit::WebIDBKey& key, |
94 const WebKit::WebSerializedScriptValue& value, | 88 const WebKit::WebSerializedScriptValue& value, |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 SimpleWebCookieJarImpl cookie_jar_; | 128 SimpleWebCookieJarImpl cookie_jar_; |
135 scoped_refptr<TestShellWebBlobRegistryImpl> blob_registry_; | 129 scoped_refptr<TestShellWebBlobRegistryImpl> blob_registry_; |
136 SimpleFileSystem file_system_; | 130 SimpleFileSystem file_system_; |
137 | 131 |
138 #if defined(OS_WIN) | 132 #if defined(OS_WIN) |
139 WebKit::WebThemeEngine* active_theme_engine_; | 133 WebKit::WebThemeEngine* active_theme_engine_; |
140 #endif | 134 #endif |
141 }; | 135 }; |
142 | 136 |
143 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ | 137 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBKIT_INIT_H_ |
OLD | NEW |