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

Unified Diff: chrome/browser/renderer_host/render_sandbox_host_linux.cc

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/in_process_webkit/browser_webkitclient_impl.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/render_sandbox_host_linux.cc
===================================================================
--- chrome/browser/renderer_host/render_sandbox_host_linux.cc (revision 21404)
+++ chrome/browser/renderer_host/render_sandbox_host_linux.cc (working copy)
@@ -23,6 +23,8 @@
#include "webkit/api/public/WebData.h"
#include "webkit/api/public/WebKit.h"
#include "webkit/api/public/WebKitClient.h"
+#include "webkit/api/public/WebStorageArea.h"
+#include "webkit/api/public/WebStorageNamespace.h"
#include "SkFontHost_fontconfig_direct.h"
#include "SkFontHost_fontconfig_ipc.h"
@@ -36,6 +38,8 @@
using WebKit::WebPluginInfo;
using WebKit::WebPluginListBuilder;
using WebKit::WebSandboxSupport;
+using WebKit::WebStorageArea;
+using WebKit::WebStorageNamespace;
using WebKit::WebString;
using WebKit::WebThemeEngine;
using WebKit::WebUChar;
@@ -108,6 +112,10 @@
virtual WebSandboxSupport* sandboxSupport() { return NULL; }
virtual WebThemeEngine* themeEngine() { return NULL; }
+ virtual WebStorageNamespace* createLocalStorageNamespace(
+ const WebString& path) { return 0; }
+ virtual WebStorageNamespace* createSessionStorageNamespace() { return 0; }
+
virtual bool getFileSize(const WebString& path, long long& result) {
return false;
}
« no previous file with comments | « chrome/browser/in_process_webkit/browser_webkitclient_impl.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698