OLD | NEW |
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 1133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1144 // "tls1.2"). | 1144 // "tls1.2"). |
1145 const char kSSLVersionMax[] = "ssl-version-max"; | 1145 const char kSSLVersionMax[] = "ssl-version-max"; |
1146 | 1146 |
1147 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or | 1147 // Specifies the minimum SSL/TLS version ("ssl3", "tls1", "tls1.1", or |
1148 // "tls1.2"). | 1148 // "tls1.2"). |
1149 const char kSSLVersionMin[] = "ssl-version-min"; | 1149 const char kSSLVersionMin[] = "ssl-version-min"; |
1150 | 1150 |
1151 // Starts the browser maximized, regardless of any previous settings. | 1151 // Starts the browser maximized, regardless of any previous settings. |
1152 const char kStartMaximized[] = "start-maximized"; | 1152 const char kStartMaximized[] = "start-maximized"; |
1153 | 1153 |
1154 // Controls the width of time-of-day filters on the 'suggested' ntp page, in | |
1155 // minutes. | |
1156 const char kSuggestionNtpFilterWidth[] = "suggestion-ntp-filter-width"; | |
1157 | |
1158 // Enables a normal distribution dropoff to the relevancy of visits with respect | |
1159 // to the time of day. | |
1160 const char kSuggestionNtpGaussianFilter[] = "suggestion-ntp-gaussian-filter"; | |
1161 | |
1162 // Enables a linear dropoff to the relevancy of visits with respect to the time | |
1163 // of day. | |
1164 const char kSuggestionNtpLinearFilter[] = "suggestion-ntp-linear-filter"; | |
1165 | |
1166 // Sets the supervised user ID for any loaded or newly created profile to the | 1154 // Sets the supervised user ID for any loaded or newly created profile to the |
1167 // given value. Pass an empty string to mark the profile as non-supervised. | 1155 // given value. Pass an empty string to mark the profile as non-supervised. |
1168 // Used for testing. | 1156 // Used for testing. |
1169 const char kSupervisedUserId[] = "managed-user-id"; | 1157 const char kSupervisedUserId[] = "managed-user-id"; |
1170 | 1158 |
1171 // Used to authenticate requests to the Sync service for supervised users. | 1159 // Used to authenticate requests to the Sync service for supervised users. |
1172 // Setting this switch also causes Sync to be set up for a supervised user. | 1160 // Setting this switch also causes Sync to be set up for a supervised user. |
1173 const char kSupervisedUserSyncToken[] = "managed-user-sync-token"; | 1161 const char kSupervisedUserSyncToken[] = "managed-user-sync-token"; |
1174 | 1162 |
1175 // This flag causes sync to retry very quickly (see polling_constants.h) the | 1163 // This flag causes sync to retry very quickly (see polling_constants.h) the |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1414 | 1402 |
1415 // ----------------------------------------------------------------------------- | 1403 // ----------------------------------------------------------------------------- |
1416 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1404 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1417 // | 1405 // |
1418 // You were going to just dump your switches here, weren't you? Instead, please | 1406 // You were going to just dump your switches here, weren't you? Instead, please |
1419 // put them in alphabetical order above, or in order inside the appropriate | 1407 // put them in alphabetical order above, or in order inside the appropriate |
1420 // ifdef at the bottom. The order should match the header. | 1408 // ifdef at the bottom. The order should match the header. |
1421 // ----------------------------------------------------------------------------- | 1409 // ----------------------------------------------------------------------------- |
1422 | 1410 |
1423 } // namespace switches | 1411 } // namespace switches |
OLD | NEW |