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

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

Issue 7776002: Add back prefs::kSSL3Enabled and prefs::kTLS1Enabled, but control (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Also delete the pref_change_registrar_.Add() calls. Created 9 years, 4 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
===================================================================
--- chrome/browser/prefs/command_line_pref_store.cc (revision 98542)
+++ chrome/browser/prefs/command_line_pref_store.cc (working copy)
@@ -42,6 +42,8 @@
prefs::kWebKitAllowDisplayingInsecureContent, false },
{ switches::kAllowCrossOriginAuthPrompt,
prefs::kAllowCrossOriginAuthPrompt, true },
+ { switches::kDisableSSL3, prefs::kSSL3Enabled, false },
+ { switches::kDisableTLS1, prefs::kTLS1Enabled, false },
};
CommandLinePrefStore::CommandLinePrefStore(const CommandLine* command_line)

Powered by Google App Engine
This is Rietveld 408576698