diff options
author | kouhei@chromium.org <kouhei@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-01 05:24:34 +0000 |
---|---|---|
committer | kouhei@chromium.org <kouhei@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-01 05:24:34 +0000 |
commit | fe79ca4a9f054873cfa71331b918c7586924c950 (patch) | |
tree | 346aee4cb6f75a5e509661221eb821ef44448e2f /content/ppapi_plugin | |
parent | b9de37bbc2d381e4a336da58a346e86195228356 (diff) | |
download | chromium_src-fe79ca4a9f054873cfa71331b918c7586924c950.zip chromium_src-fe79ca4a9f054873cfa71331b918c7586924c950.tar.gz chromium_src-fe79ca4a9f054873cfa71331b918c7586924c950.tar.bz2 |
remove implementation of obsolete WebKitPlatformSupport::prefetchHostName.
The use of this API was removed in Blink@r153315. The blink side patch is http://crrev.com/20992004
BUG=None
Review URL: https://chromiumcodereview.appspot.com/21043002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@214961 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/ppapi_plugin')
-rw-r--r-- | content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc | 5 | ||||
-rw-r--r-- | content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc index 5e7dca6..1ac82df 100644 --- a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc +++ b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc @@ -206,11 +206,6 @@ WebKit::WebString PpapiWebKitPlatformSupportImpl::cookies( return WebKit::WebString(); } -void PpapiWebKitPlatformSupportImpl::prefetchHostName( - const WebKit::WebString&) { - NOTREACHED(); -} - WebKit::WebString PpapiWebKitPlatformSupportImpl::defaultLocale() { NOTREACHED(); return WebKit::WebString(); diff --git a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h index e1f0665..d2a3541 100644 --- a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h +++ b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h @@ -32,7 +32,6 @@ class PpapiWebKitPlatformSupportImpl : public WebKitPlatformSupportImpl { virtual WebKit::WebString cookies( const WebKit::WebURL& url, const WebKit::WebURL& first_party_for_cookies); - virtual void prefetchHostName(const WebKit::WebString&); virtual WebKit::WebString defaultLocale(); virtual WebKit::WebThemeEngine* themeEngine(); virtual WebKit::WebURLLoader* createURLLoader(); |