summaryrefslogtreecommitdiffstats
path: root/webkit/support
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/support
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/support')
-rw-r--r--webkit/support/test_webkit_platform_support.cc5
-rw-r--r--webkit/support/test_webkit_platform_support.h1
2 files changed, 0 insertions, 6 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();