| 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;
|
| }
|
|
|