Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(448)

Side by Side Diff: chrome/browser/in_process_webkit/browser_webkitclient_impl.h

Issue 545054: Introduce all the plumbing for Session Storage. This mostly consists of crea... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_BROWSER_WEBKITCLIENT_IMPL_H_ 5 #ifndef CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_
6 #define CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_ 6 #define CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_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 15 matching lines...) Expand all
26 const WebKit::WebURL& first_party_for_cookies); 26 const WebKit::WebURL& first_party_for_cookies);
27 virtual void prefetchHostName(const WebKit::WebString&); 27 virtual void prefetchHostName(const WebKit::WebString&);
28 virtual WebKit::WebString defaultLocale(); 28 virtual WebKit::WebString defaultLocale();
29 virtual WebKit::WebThemeEngine* themeEngine(); 29 virtual WebKit::WebThemeEngine* themeEngine();
30 virtual WebKit::WebURLLoader* createURLLoader(); 30 virtual WebKit::WebURLLoader* createURLLoader();
31 virtual WebKit::WebSocketStreamHandle* createSocketStreamHandle(); 31 virtual WebKit::WebSocketStreamHandle* createSocketStreamHandle();
32 virtual void getPluginList(bool refresh, WebKit::WebPluginListBuilder*); 32 virtual void getPluginList(bool refresh, WebKit::WebPluginListBuilder*);
33 virtual WebKit::WebData loadResource(const char* name); 33 virtual WebKit::WebData loadResource(const char* name);
34 virtual WebKit::WebStorageNamespace* createLocalStorageNamespace( 34 virtual WebKit::WebStorageNamespace* createLocalStorageNamespace(
35 const WebKit::WebString& path, unsigned quota); 35 const WebKit::WebString& path, unsigned quota);
36 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace();
37 virtual void dispatchStorageEvent(const WebKit::WebString& key, 36 virtual void dispatchStorageEvent(const WebKit::WebString& key,
38 const WebKit::WebString& oldValue, const WebKit::WebString& newValue, 37 const WebKit::WebString& oldValue, const WebKit::WebString& newValue,
39 const WebKit::WebString& origin, const WebKit::WebURL& url, 38 const WebKit::WebString& origin, const WebKit::WebURL& url,
40 bool isLocalStorage); 39 bool isLocalStorage);
41 virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository(); 40 virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository();
42 }; 41 };
43 42
44 #endif // CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_ 43 #endif // CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_host.cc ('k') | chrome/browser/in_process_webkit/browser_webkitclient_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698