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

Side by Side Diff: chrome/renderer/renderer_webkitclient_impl.h

Issue 147248: DOM Storage: Add renderer-process IPC code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/renderer/renderer_webkitclient_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_RENDERER_RENDERER_WEBKIT_CLIENT_IMPL_H_ 5 #ifndef CHROME_RENDERER_RENDERER_WEBKIT_CLIENT_IMPL_H_
6 #define CHROME_RENDERER_RENDERER_WEBKIT_CLIENT_IMPL_H_ 6 #define CHROME_RENDERER_RENDERER_WEBKIT_CLIENT_IMPL_H_
7 7
8 #include "webkit/glue/simple_webmimeregistry_impl.h" 8 #include "webkit/glue/simple_webmimeregistry_impl.h"
9 #include "webkit/glue/webclipboard_impl.h" 9 #include "webkit/glue/webclipboard_impl.h"
10 #include "webkit/glue/webkitclient_impl.h" 10 #include "webkit/glue/webkitclient_impl.h"
(...skipping 18 matching lines...) Expand all
29 const char* canonicalURL, size_t length); 29 const char* canonicalURL, size_t length);
30 virtual bool isLinkVisited(unsigned long long linkHash); 30 virtual bool isLinkVisited(unsigned long long linkHash);
31 virtual void setCookies(const WebKit::WebURL& url, 31 virtual void setCookies(const WebKit::WebURL& url,
32 const WebKit::WebURL& first_party_for_cookies, 32 const WebKit::WebURL& first_party_for_cookies,
33 const WebKit::WebString&); 33 const WebKit::WebString&);
34 virtual WebKit::WebString cookies( 34 virtual WebKit::WebString cookies(
35 const WebKit::WebURL& url, const WebKit::WebURL& first_party_for_cookies); 35 const WebKit::WebURL& url, const WebKit::WebURL& first_party_for_cookies);
36 virtual void prefetchHostName(const WebKit::WebString&); 36 virtual void prefetchHostName(const WebKit::WebString&);
37 virtual WebKit::WebString defaultLocale(); 37 virtual WebKit::WebString defaultLocale();
38 virtual void suddenTerminationChanged(bool enabled); 38 virtual void suddenTerminationChanged(bool enabled);
39 virtual WebKit::WebStorageNamespace* createLocalStorageNamespace(
40 const WebKit::WebString& path);
41 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace();
39 42
40 private: 43 private:
41 class MimeRegistry : public webkit_glue::SimpleWebMimeRegistryImpl { 44 class MimeRegistry : public webkit_glue::SimpleWebMimeRegistryImpl {
42 public: 45 public:
43 virtual WebKit::WebString mimeTypeForExtension(const WebKit::WebString&); 46 virtual WebKit::WebString mimeTypeForExtension(const WebKit::WebString&);
44 virtual WebKit::WebString mimeTypeFromFile(const WebKit::WebString&); 47 virtual WebKit::WebString mimeTypeFromFile(const WebKit::WebString&);
45 virtual WebKit::WebString preferredExtensionForMIMEType( 48 virtual WebKit::WebString preferredExtensionForMIMEType(
46 const WebKit::WebString&); 49 const WebKit::WebString&);
47 }; 50 };
48 51
(...skipping 20 matching lines...) Expand all
69 72
70 webkit_glue::WebClipboardImpl clipboard_; 73 webkit_glue::WebClipboardImpl clipboard_;
71 74
72 MimeRegistry mime_registry_; 75 MimeRegistry mime_registry_;
73 #if defined(OS_WIN) || defined(OS_LINUX) 76 #if defined(OS_WIN) || defined(OS_LINUX)
74 SandboxSupport sandbox_support_; 77 SandboxSupport sandbox_support_;
75 #endif 78 #endif
76 }; 79 };
77 80
78 #endif // CHROME_RENDERER_WEBKIT_CLIENT_IMPL_H_ 81 #endif // CHROME_RENDERER_WEBKIT_CLIENT_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/renderer/renderer_webkitclient_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698