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

Side by Side Diff: chrome/browser/policy/configuration_policy_handler_list_factory.cc

Issue 644913008: Add Enterprise policy option to control minimum SSL fallback level. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/policy/policy_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/policy/configuration_policy_handler_list_factory.h" 5 #include "chrome/browser/policy/configuration_policy_handler_list_factory.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/memory/scoped_vector.h" 9 #include "base/memory/scoped_vector.h"
10 #include "base/values.h" 10 #include "base/values.h"
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 base::Value::TYPE_STRING }, 362 base::Value::TYPE_STRING },
363 { key::kSupervisedUserCreationEnabled, 363 { key::kSupervisedUserCreationEnabled,
364 prefs::kSupervisedUserCreationAllowed, 364 prefs::kSupervisedUserCreationAllowed,
365 base::Value::TYPE_BOOLEAN }, 365 base::Value::TYPE_BOOLEAN },
366 { key::kForceEphemeralProfiles, 366 { key::kForceEphemeralProfiles,
367 prefs::kForceEphemeralProfiles, 367 prefs::kForceEphemeralProfiles,
368 base::Value::TYPE_BOOLEAN }, 368 base::Value::TYPE_BOOLEAN },
369 { key::kSSLVersionMin, 369 { key::kSSLVersionMin,
370 prefs::kSSLVersionMin, 370 prefs::kSSLVersionMin,
371 base::Value::TYPE_STRING }, 371 base::Value::TYPE_STRING },
372 { key::kSSLVersionFallbackMin,
373 prefs::kSSLVersionFallbackMin,
374 base::Value::TYPE_STRING },
372 375
373 #if !defined(OS_MACOSX) && !defined(OS_IOS) 376 #if !defined(OS_MACOSX) && !defined(OS_IOS)
374 { key::kFullscreenAllowed, 377 { key::kFullscreenAllowed,
375 prefs::kFullscreenAllowed, 378 prefs::kFullscreenAllowed,
376 base::Value::TYPE_BOOLEAN }, 379 base::Value::TYPE_BOOLEAN },
377 #if defined(ENABLE_EXTENSIONS) 380 #if defined(ENABLE_EXTENSIONS)
378 { key::kFullscreenAllowed, 381 { key::kFullscreenAllowed,
379 extensions::pref_names::kAppFullscreenAllowed, 382 extensions::pref_names::kAppFullscreenAllowed,
380 base::Value::TYPE_BOOLEAN }, 383 base::Value::TYPE_BOOLEAN },
381 #endif // defined(ENABLE_EXTENSIONS) 384 #endif // defined(ENABLE_EXTENSIONS)
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 chrome_schema, 799 chrome_schema,
797 SCHEMA_STRICT, 800 SCHEMA_STRICT,
798 SimpleSchemaValidatingPolicyHandler::RECOMMENDED_ALLOWED, 801 SimpleSchemaValidatingPolicyHandler::RECOMMENDED_ALLOWED,
799 SimpleSchemaValidatingPolicyHandler::MANDATORY_PROHIBITED))); 802 SimpleSchemaValidatingPolicyHandler::MANDATORY_PROHIBITED)));
800 #endif // defined(OS_CHROMEOS) 803 #endif // defined(OS_CHROMEOS)
801 804
802 return handlers.Pass(); 805 return handlers.Pass();
803 } 806 }
804 807
805 } // namespace policy 808 } // namespace policy
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/policy/policy_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698