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

Unified Diff: chrome/browser/policy/configuration_policy_handler_list_factory.cc

Issue 1320533007: Componentize ssl_config_service_manager_pref.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added OWNERS and updated gypi type Created 5 years, 3 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/policy/configuration_policy_handler_list_factory.cc
diff --git a/chrome/browser/policy/configuration_policy_handler_list_factory.cc b/chrome/browser/policy/configuration_policy_handler_list_factory.cc
index a6650f4f95c0278b4a6a3de4ecb612382de8b42a..0ca832172add9234971f98ff6789552d1220013c 100644
--- a/chrome/browser/policy/configuration_policy_handler_list_factory.cc
+++ b/chrome/browser/policy/configuration_policy_handler_list_factory.cc
@@ -26,6 +26,7 @@
#include "components/policy/core/common/policy_pref_names.h"
#include "components/policy/core/common/schema.h"
#include "components/search_engines/default_search_policy_handler.h"
+#include "components/ssl_config/ssl_config_prefs.h"
#include "components/translate/core/common/translate_pref_names.h"
#include "components/variations/pref_names.h"
#include "policy/policy_constants.h"
@@ -212,13 +213,13 @@ const PolicyToPreferenceMapEntry kSimplePolicyMap[] = {
prefs::kSigninAllowed,
base::Value::TYPE_BOOLEAN },
{ key::kDisableSSLRecordSplitting,
- prefs::kDisableSSLRecordSplitting,
+ ssl_config::prefs::kDisableSSLRecordSplitting,
base::Value::TYPE_BOOLEAN },
{ key::kEnableOnlineRevocationChecks,
- prefs::kCertRevocationCheckingEnabled,
+ ssl_config::prefs::kCertRevocationCheckingEnabled,
base::Value::TYPE_BOOLEAN },
{ key::kRequireOnlineRevocationChecksForLocalAnchors,
- prefs::kCertRevocationCheckingRequiredLocalAnchors,
+ ssl_config::prefs::kCertRevocationCheckingRequiredLocalAnchors,
base::Value::TYPE_BOOLEAN },
{ key::kAuthSchemes,
prefs::kAuthSchemes,
@@ -366,7 +367,7 @@ const PolicyToPreferenceMapEntry kSimplePolicyMap[] = {
prefs::kForceEphemeralProfiles,
base::Value::TYPE_BOOLEAN },
{ key::kSSLVersionFallbackMin,
- prefs::kSSLVersionFallbackMin,
+ ssl_config::prefs::kSSLVersionFallbackMin,
base::Value::TYPE_STRING },
#if !defined(OS_MACOSX) && !defined(OS_IOS)

Powered by Google App Engine
This is Rietveld 408576698