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

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

Issue 1417033010: Adding <keygen> Content Setting (Blink) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@keygen_core
Patch Set: Rebase? Created 5 years, 1 month 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/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 249435be00405353b780fe527f310580f893daf1..d67c692f0877a650b7d36df78f792942b6912619 100644
--- a/chrome/browser/renderer_host/chrome_render_message_filter.h
+++ b/chrome/browser/renderer_host/chrome_render_message_filter.h
@@ -15,6 +15,7 @@
class GURL;
class Profile;
+class ProfileIOData;
namespace chrome_browser_net {
class Predictor;
@@ -64,6 +65,9 @@ class ChromeRenderMessageFilter : public content::BrowserMessageFilter {
const GURL& top_origin_url,
bool local,
bool* allowed);
+ void OnAllowKeygen(int render_frame_id,
+ const GURL& origin_url,
+ bool* allowed);
void OnRequestFileSystemAccessSync(int render_frame_id,
const GURL& origin_url,
const GURL& top_origin_url,
@@ -121,6 +125,7 @@ class ChromeRenderMessageFilter : public content::BrowserMessageFilter {
// The Profile associated with our renderer process. This should only be
// accessed on the UI thread!
Profile* profile_;
+ ProfileIOData* profile_io_data_;
// The Predictor for the associated Profile. It is stored so that it can be
// used on the IO thread.
chrome_browser_net::Predictor* predictor_;

Powered by Google App Engine
This is Rietveld 408576698