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

Unified Diff: chrome/browser/prefs/command_line_pref_store.cc

Issue 6773006: Add enableReferrers and enableHyperlinkAuditing to contentSettings.misc API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 9 years, 8 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/prefs/command_line_pref_store.cc
diff --git a/chrome/browser/prefs/command_line_pref_store.cc b/chrome/browser/prefs/command_line_pref_store.cc
index c0438c72dd91caa01fdc8098e593408f78a31d1d..2f4c3166b9dd93917a18bc152640bd43509d5c4a 100644
--- a/chrome/browser/prefs/command_line_pref_store.cc
+++ b/chrome/browser/prefs/command_line_pref_store.cc
@@ -31,6 +31,8 @@ const CommandLinePrefStore::BooleanSwitchToPreferenceMapEntry
{ switches::kEnableCloudPrintProxy, prefs::kCloudPrintProxyEnabled,
true },
{ switches::kAllowOutdatedPlugins, prefs::kPluginsAllowOutdated, true },
+ { switches::kNoPings, prefs::kEnableHyperlinkAuditing, false },
+ { switches::kNoReferrers, prefs::kEnableReferrers, false },
};
CommandLinePrefStore::CommandLinePrefStore(const CommandLine* command_line)

Powered by Google App Engine
This is Rietveld 408576698