Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(573)

Unified Diff: chrome/browser/chrome_content_browser_client.cc

Issue 10831045: Add PP_FlashLSORestrictions to the list of settings supported by the Flash_GetSetting Pepper API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 fdae27e11ea3cc870125c2fba9e82e6564cdc8c4..51870488e2e99b71032e2c80a77fadd9afdafa9c 100644
--- a/chrome/browser/chrome_content_browser_client.cc
+++ b/chrome/browser/chrome_content_browser_client.cc
@@ -957,6 +957,22 @@ bool ChromeContentBrowserClient::AllowSetCookie(
return allow;
}
+bool ChromeContentBrowserClient::AllowPluginLocalDataAccess(
+ const GURL& site_url,
+ const GURL& plugin_url,
+ content::ResourceContext* context) {
+ ProfileIOData* io_data = ProfileIOData::FromResourceContext(context);
+ return io_data->GetCookieSettings()->IsReadingCookieAllowed(site_url,
+ plugin_url);
+}
+
+bool ChromeContentBrowserClient::AllowPluginLocalDataSessionOnly(
+ const GURL& url,
+ content::ResourceContext* context) {
+ ProfileIOData* io_data = ProfileIOData::FromResourceContext(context);
+ return io_data->GetCookieSettings()->IsCookieSessionOnly(url);
+}
+
bool ChromeContentBrowserClient::AllowSaveLocalState(
content::ResourceContext* context) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));

Powered by Google App Engine
This is Rietveld 408576698