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

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: fix Created 9 years, 9 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 4bdf7c46f9918c1ecc6ff3cf17294e44729b0a97..af1878f7628da3af40fe86449bc139c03110545e 100644
--- a/chrome/browser/prefs/command_line_pref_store.cc
+++ b/chrome/browser/prefs/command_line_pref_store.cc
@@ -30,6 +30,8 @@ const CommandLinePrefStore::BooleanSwitchToPreferenceMapEntry
{ switches::kDisable3DAPIs, prefs::kDisable3DAPIs, true },
{ switches::kEnableCloudPrintProxy, prefs::kCloudPrintProxyEnabled,
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