| 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,
|
|
|