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

Unified Diff: chrome/browser/renderer_host/chrome_render_message_filter.h

Issue 7068013: Pass frame and toplevel frame security origin for all site data related content settings IPCs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/renderer_host/chrome_render_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/chrome_render_message_filter.h
diff --git a/chrome/browser/renderer_host/chrome_render_message_filter.h b/chrome/browser/renderer_host/chrome_render_message_filter.h
index 59b34dedfcb48908e0b673a9d81135c45f59210a..8b8aca2f0129b9f1290839a9bec74dd51d4153aa 100644
--- a/chrome/browser/renderer_host/chrome_render_message_filter.h
+++ b/chrome/browser/renderer_host/chrome_render_message_filter.h
@@ -86,16 +86,22 @@ class ChromeRenderMessageFilter : public BrowserMessageFilter {
ContentSetting* authorize_policy);
void OnAllowDatabase(int render_view_id,
const GURL& origin_url,
+ const GURL& top_origin_url,
const string16& name,
const string16& display_name,
bool* allowed);
void OnAllowDOMStorage(int render_view_id,
- const GURL& url,
+ const GURL& origin_url,
+ const GURL& top_origin_url,
DOMStorageType type,
bool* allowed);
- void OnAllowFileSystem(int render_view_id, const GURL& url, bool* allowed);
+ void OnAllowFileSystem(int render_view_id,
+ const GURL& origin_url,
+ const GURL& top_origin_url,
+ bool* allowed);
void OnAllowIndexedDB(int render_view_id,
- const string16& origin_url,
+ const GURL& origin_url,
+ const GURL& top_origin_url,
const string16& name,
bool* allowed);
void OnGetPluginContentSetting(const GURL& policy_url,
« no previous file with comments | « no previous file | chrome/browser/renderer_host/chrome_render_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698