diff options
author | pilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-11 00:09:59 +0000 |
---|---|---|
committer | pilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-11 00:09:59 +0000 |
commit | 00fccb4ec30b65ac32f78f1bff0cf632e24d0a50 (patch) | |
tree | f62a2ff1dee93ad633f071b883621242b4d0ba20 /content/ppapi_plugin | |
parent | 8fe72e388e8d3d36014c3f4c1fdb17ccf534c8ad (diff) | |
download | chromium_src-00fccb4ec30b65ac32f78f1bff0cf632e24d0a50.zip chromium_src-00fccb4ec30b65ac32f78f1bff0cf632e24d0a50.tar.gz chromium_src-00fccb4ec30b65ac32f78f1bff0cf632e24d0a50.tar.bz2 |
We're removing the sharedWorkerRepository() function from WebKit
and replacing it with a setSharedWorkerRepository() function that is
called once at initialization.
Review URL: https://chromiumcodereview.appspot.com/10990121
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@172197 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/ppapi_plugin')
-rw-r--r-- | content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc | 6 | ||||
-rw-r--r-- | content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc index 40fb92a..96472c3 100644 --- a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc +++ b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc @@ -249,12 +249,6 @@ void PpapiWebKitPlatformSupportImpl::dispatchStorageEvent( NOTREACHED(); } -WebKit::WebSharedWorkerRepository* -PpapiWebKitPlatformSupportImpl::sharedWorkerRepository() { - NOTREACHED(); - return NULL; -} - int PpapiWebKitPlatformSupportImpl::databaseDeleteFile( const WebKit::WebString& vfs_file_name, bool sync_dir) { NOTREACHED(); diff --git a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h index 53a3fc5..7a1a448 100644 --- a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h +++ b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h @@ -45,7 +45,6 @@ class PpapiWebKitPlatformSupportImpl : public WebKitPlatformSupportImpl { const WebKit::WebString& oldValue, const WebKit::WebString& newValue, const WebKit::WebString& origin, const WebKit::WebURL& url, bool isLocalStorage); - virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository(); virtual int databaseDeleteFile(const WebKit::WebString& vfs_file_name, bool sync_dir); |