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 CHROME_BROWSER_IN_PROCESS_WEBKIT_WEBKIT_CLIENT_IMPL_H_ | 5 #ifndef CHROME_BROWSER_IN_PROCESS_WEBKIT_WEBKIT_CLIENT_IMPL_H_ |
6 #define CHROME_BROWSER_IN_PROCESS_WEBKIT_WEBKIT_CLIENT_IMPL_H_ | 6 #define CHROME_BROWSER_IN_PROCESS_WEBKIT_WEBKIT_CLIENT_IMPL_H_ |
7 | 7 |
8 #include "webkit/glue/webkitclient_impl.h" | 8 #include "webkit/glue/webkitclient_impl.h" |
9 | 9 |
10 class BrowserWebKitClientImpl : public webkit_glue::WebKitClientImpl { | 10 class BrowserWebKitClientImpl : public webkit_glue::WebKitClientImpl { |
(...skipping 18 matching lines...) Expand all Loading... |
29 virtual WebKit::WebURLLoader* createURLLoader(); | 29 virtual WebKit::WebURLLoader* createURLLoader(); |
30 virtual WebKit::WebSocketStreamHandle* createSocketStreamHandle(); | 30 virtual WebKit::WebSocketStreamHandle* createSocketStreamHandle(); |
31 virtual void getPluginList(bool refresh, WebKit::WebPluginListBuilder*); | 31 virtual void getPluginList(bool refresh, WebKit::WebPluginListBuilder*); |
32 virtual WebKit::WebData loadResource(const char* name); | 32 virtual WebKit::WebData loadResource(const char* name); |
33 virtual WebKit::WebStorageNamespace* createLocalStorageNamespace( | 33 virtual WebKit::WebStorageNamespace* createLocalStorageNamespace( |
34 const WebKit::WebString& path); | 34 const WebKit::WebString& path); |
35 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace(); | 35 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace(); |
36 virtual void dispatchStorageEvent(const WebKit::WebString& key, | 36 virtual void dispatchStorageEvent(const WebKit::WebString& key, |
37 const WebKit::WebString& oldValue, const WebKit::WebString& newValue, | 37 const WebKit::WebString& oldValue, const WebKit::WebString& newValue, |
38 const WebKit::WebString& origin, bool isLocalStorage); | 38 const WebKit::WebString& origin, bool isLocalStorage); |
| 39 virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository(); |
39 }; | 40 }; |
40 | 41 |
41 #endif // CHROME_BROWSER_IN_PROCESS_WEBKIT_WEBKIT_CLIENT_IMPL_H_ | 42 #endif // CHROME_BROWSER_IN_PROCESS_WEBKIT_WEBKIT_CLIENT_IMPL_H_ |
OLD | NEW |