summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorpilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-11 00:09:59 +0000
committerpilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-11 00:09:59 +0000
commit00fccb4ec30b65ac32f78f1bff0cf632e24d0a50 (patch)
treef62a2ff1dee93ad633f071b883621242b4d0ba20 /webkit
parent8fe72e388e8d3d36014c3f4c1fdb17ccf534c8ad (diff)
downloadchromium_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 'webkit')
-rw-r--r--webkit/support/test_webkit_platform_support.cc5
-rw-r--r--webkit/support/test_webkit_platform_support.h1
-rw-r--r--webkit/tools/test_shell/test_shell_webkit_init.cc5
-rw-r--r--webkit/tools/test_shell/test_shell_webkit_init.h1
4 files changed, 0 insertions, 12 deletions
diff --git a/webkit/support/test_webkit_platform_support.cc b/webkit/support/test_webkit_platform_support.cc
index fa31734..853a7dd 100644
--- a/webkit/support/test_webkit_platform_support.cc
+++ b/webkit/support/test_webkit_platform_support.cc
@@ -421,11 +421,6 @@ WebKit::WebThemeEngine* TestWebKitPlatformSupport::themeEngine() {
}
#endif
-WebKit::WebSharedWorkerRepository*
-TestWebKitPlatformSupport::sharedWorkerRepository() {
- return NULL;
-}
-
WebKit::WebGraphicsContext3D*
TestWebKitPlatformSupport::createOffscreenGraphicsContext3D(
const WebKit::WebGraphicsContext3D::Attributes& attributes) {
diff --git a/webkit/support/test_webkit_platform_support.h b/webkit/support/test_webkit_platform_support.h
index a16263d..08411b9 100644
--- a/webkit/support/test_webkit_platform_support.h
+++ b/webkit/support/test_webkit_platform_support.h
@@ -81,7 +81,6 @@ class TestWebKitPlatformSupport :
virtual WebKit::WebThemeEngine *themeEngine() OVERRIDE;
#endif
- virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository() OVERRIDE;
virtual WebKit::WebGraphicsContext3D* createOffscreenGraphicsContext3D(
const WebKit::WebGraphicsContext3D::Attributes&);
virtual bool canAccelerate2dCanvas();
diff --git a/webkit/tools/test_shell/test_shell_webkit_init.cc b/webkit/tools/test_shell/test_shell_webkit_init.cc
index c74745c..ded88b3 100644
--- a/webkit/tools/test_shell/test_shell_webkit_init.cc
+++ b/webkit/tools/test_shell/test_shell_webkit_init.cc
@@ -263,11 +263,6 @@ WebKit::WebIDBFactory* TestShellWebKitInit::idbFactory() {
return WebKit::WebIDBFactory::create();
}
-WebKit::WebSharedWorkerRepository*
-TestShellWebKitInit::sharedWorkerRepository() {
- return NULL;
-}
-
WebKit::WebGraphicsContext3D*
TestShellWebKitInit::createOffscreenGraphicsContext3D(
const WebKit::WebGraphicsContext3D::Attributes& attributes) {
diff --git a/webkit/tools/test_shell/test_shell_webkit_init.h b/webkit/tools/test_shell/test_shell_webkit_init.h
index 937375c..c1160eb 100644
--- a/webkit/tools/test_shell/test_shell_webkit_init.h
+++ b/webkit/tools/test_shell/test_shell_webkit_init.h
@@ -86,7 +86,6 @@ class TestShellWebKitInit : public webkit_glue::WebKitPlatformSupportImpl {
}
#endif
- virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository() OVERRIDE;
virtual WebKit::WebGraphicsContext3D* createOffscreenGraphicsContext3D(
const WebKit::WebGraphicsContext3D::Attributes& attributes);