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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 1320533007: Componentize ssl_config_service_manager_pref.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolve -Wnewline-eof mac_chromium bot failure Created 5 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 | « chrome/common/chrome_switches.h ('k') | chrome/common/pref_names.h » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 1032 matching lines...) Expand 10 before | Expand all | Expand 10 after
1043 1043
1044 // Specifies the number of seconds between sending batches of feedback to 1044 // Specifies the number of seconds between sending batches of feedback to
1045 // spelling service. The default is 30 minutes. The minimum is 5 seconds. This 1045 // spelling service. The default is 30 minutes. The minimum is 5 seconds. This
1046 // switch is for temporary testing only. 1046 // switch is for temporary testing only.
1047 // TODO(rouslan): Remove this flag when feedback testing is complete. Revisit by 1047 // TODO(rouslan): Remove this flag when feedback testing is complete. Revisit by
1048 // August 2013. 1048 // August 2013.
1049 const char kSpellingServiceFeedbackIntervalSeconds[] = 1049 const char kSpellingServiceFeedbackIntervalSeconds[] =
1050 "spelling-service-feedback-interval-seconds"; 1050 "spelling-service-feedback-interval-seconds";
1051 #endif 1051 #endif
1052 1052
1053 // Specifies the maximum SSL/TLS version ("tls1", "tls1.1", or "tls1.2").
1054 const char kSSLVersionMax[] = "ssl-version-max";
1055
1056 // Specifies the minimum SSL/TLS version ("tls1", "tls1.1", or "tls1.2").
1057 const char kSSLVersionMin[] = "ssl-version-min";
1058
1059 // Specifies the minimum SSL/TLS version ("tls1", "tls1.1", or "tls1.2") that
1060 // TLS fallback will accept.
1061 const char kSSLVersionFallbackMin[] = "ssl-version-fallback-min";
1062
1063 // These values aren't switches, but rather the values that kSSLVersionMax,
1064 // kSSLVersionMin and kSSLVersionFallbackMin can have.
1065 const char kSSLVersionTLSv1[] = "tls1";
1066 const char kSSLVersionTLSv11[] = "tls1.1";
1067 const char kSSLVersionTLSv12[] = "tls1.2";
1068
1069 // Starts the browser maximized, regardless of any previous settings. 1053 // Starts the browser maximized, regardless of any previous settings.
1070 const char kStartMaximized[] = "start-maximized"; 1054 const char kStartMaximized[] = "start-maximized";
1071 1055
1072 // Sets the supervised user ID for any loaded or newly created profile to the 1056 // Sets the supervised user ID for any loaded or newly created profile to the
1073 // given value. Pass an empty string to mark the profile as non-supervised. 1057 // given value. Pass an empty string to mark the profile as non-supervised.
1074 // Used for testing. 1058 // Used for testing.
1075 const char kSupervisedUserId[] = "managed-user-id"; 1059 const char kSupervisedUserId[] = "managed-user-id";
1076 1060
1077 // Enables/disables SafeSites filtering for supervised users. Possible values 1061 // Enables/disables SafeSites filtering for supervised users. Possible values
1078 // are "enabled", "disabled", "blacklist-only", and "online-check-only". 1062 // are "enabled", "disabled", "blacklist-only", and "online-check-only".
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
1410 1394
1411 // ----------------------------------------------------------------------------- 1395 // -----------------------------------------------------------------------------
1412 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1396 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1413 // 1397 //
1414 // You were going to just dump your switches here, weren't you? Instead, please 1398 // You were going to just dump your switches here, weren't you? Instead, please
1415 // put them in alphabetical order above, or in order inside the appropriate 1399 // put them in alphabetical order above, or in order inside the appropriate
1416 // ifdef at the bottom. The order should match the header. 1400 // ifdef at the bottom. The order should match the header.
1417 // ----------------------------------------------------------------------------- 1401 // -----------------------------------------------------------------------------
1418 1402
1419 } // namespace switches 1403 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698