Index: chrome/browser/content_settings/chrome_content_settings_utils.h |
diff --git a/chrome/browser/content_settings/chrome_content_settings_utils.h b/chrome/browser/content_settings/chrome_content_settings_utils.h |
index 8d07cc9c7905bd873c9f270595e4d154fd669a23..71f7d8c1bd4caf4ce0ff58be52100b2c4a3ef7bb 100644 |
--- a/chrome/browser/content_settings/chrome_content_settings_utils.h |
+++ b/chrome/browser/content_settings/chrome_content_settings_utils.h |
@@ -5,6 +5,8 @@ |
#ifndef CHROME_BROWSER_CONTENT_SETTINGS_CHROME_CONTENT_SETTINGS_UTILS_H_ |
#define CHROME_BROWSER_CONTENT_SETTINGS_CHROME_CONTENT_SETTINGS_UTILS_H_ |
+#include "url/gurl.h" |
Bernhard Bauer
2015/06/13 10:25:16
You can forward-declare GURL without including the
|
+ |
// Put utility functions only used by //chrome code here. If a function declared |
// here would be meaningfully shared with other platforms, consider moving it to |
// components/content_settings/core/browser/content_settings_utils.h. |
@@ -21,6 +23,8 @@ enum MixedScriptAction { |
}; |
void RecordMixedScriptAction(MixedScriptAction action); |
+void RecordMixedScriptActionWithRAPPOR(MixedScriptAction action, |
+ const GURL& url); |
} // namespace content_settings |