| Index: chrome/browser/chrome_content_browser_client.cc
|
| diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
|
| index b0c01e9dafca12b2352a2429c029b36373a879de..55de48b7332e19a0744f99bbc9214f770a8894d8 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -1102,24 +1102,6 @@ bool ChromeContentBrowserClient::AllowSetCookie(
|
| return allow;
|
| }
|
|
|
| -bool ChromeContentBrowserClient::AllowPluginLocalDataAccess(
|
| - const GURL& document_url,
|
| - const GURL& plugin_url,
|
| - content::ResourceContext* context) {
|
| - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
| - ProfileIOData* io_data = ProfileIOData::FromResourceContext(context);
|
| - return io_data->GetCookieSettings()->IsReadingCookieAllowed(document_url,
|
| - plugin_url);
|
| -}
|
| -
|
| -bool ChromeContentBrowserClient::AllowPluginLocalDataSessionOnly(
|
| - const GURL& url,
|
| - content::ResourceContext* context) {
|
| - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
| - ProfileIOData* io_data = ProfileIOData::FromResourceContext(context);
|
| - return io_data->GetCookieSettings()->IsCookieSessionOnly(url);
|
| -}
|
| -
|
| bool ChromeContentBrowserClient::AllowSaveLocalState(
|
| content::ResourceContext* context) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
|
|