summaryrefslogtreecommitdiffstats
path: root/content/ppapi_plugin
diff options
context:
space:
mode:
authoradamk@chromium.org <adamk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-27 21:06:54 +0000
committeradamk@chromium.org <adamk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-27 21:06:54 +0000
commit23367489d8e0390baff52adb6bf791c736ab6db1 (patch)
treec9212ae0e06ce0d90b8e3b7c637dd2ee47d9ba56 /content/ppapi_plugin
parenteb1de3cc0720af512b8a9d3672b5025f0e80a79f (diff)
downloadchromium_src-23367489d8e0390baff52adb6bf791c736ab6db1.zip
chromium_src-23367489d8e0390baff52adb6bf791c736ab6db1.tar.gz
chromium_src-23367489d8e0390baff52adb6bf791c736ab6db1.tar.bz2
Remove unused arguments from storage-related Chromium impls of Blink API
Also remove related unused session storage creation test harness code. This is the Chromium side of the blink-side http://crrev.com/17583016 R=darin@chromium.org, jsbell@chromium.org Review URL: https://codereview.chromium.org/17642005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209001 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/ppapi_plugin')
-rw-r--r--content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc3
-rw-r--r--content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h3
2 files changed, 2 insertions, 4 deletions
diff --git a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc
index de43364..5e7dca6 100644
--- a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc
+++ b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc
@@ -243,8 +243,7 @@ WebKit::WebData PpapiWebKitPlatformSupportImpl::loadResource(const char* name) {
}
WebKit::WebStorageNamespace*
-PpapiWebKitPlatformSupportImpl::createLocalStorageNamespace(
- const WebKit::WebString& path, unsigned quota) {
+PpapiWebKitPlatformSupportImpl::createLocalStorageNamespace() {
NOTREACHED();
return 0;
}
diff --git a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h
index 3ed674c..e1f0665 100644
--- a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h
+++ b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h
@@ -39,8 +39,7 @@ class PpapiWebKitPlatformSupportImpl : public WebKitPlatformSupportImpl {
virtual WebKit::WebSocketStreamHandle* createSocketStreamHandle();
virtual void getPluginList(bool refresh, WebKit::WebPluginListBuilder*);
virtual WebKit::WebData loadResource(const char* name);
- virtual WebKit::WebStorageNamespace* createLocalStorageNamespace(
- const WebKit::WebString& path, unsigned quota);
+ virtual WebKit::WebStorageNamespace* createLocalStorageNamespace();
virtual void dispatchStorageEvent(const WebKit::WebString& key,
const WebKit::WebString& oldValue, const WebKit::WebString& newValue,
const WebKit::WebString& origin, const WebKit::WebURL& url,