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 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1138 // Replaces the buffered data source for <audio> and <video> with a simplified | 1138 // Replaces the buffered data source for <audio> and <video> with a simplified |
1139 // resource loader that downloads the entire resource into memory. | 1139 // resource loader that downloads the entire resource into memory. |
1140 | 1140 |
1141 // Socket reuse policy. The value should be of type enum | 1141 // Socket reuse policy. The value should be of type enum |
1142 // ClientSocketReusePolicy. | 1142 // ClientSocketReusePolicy. |
1143 const char kSocketReusePolicy[] = "socket-reuse-policy"; | 1143 const char kSocketReusePolicy[] = "socket-reuse-policy"; |
1144 | 1144 |
1145 // Starts the browser maximized, regardless of any previous settings. | 1145 // Starts the browser maximized, regardless of any previous settings. |
1146 const char kStartMaximized[] = "start-maximized"; | 1146 const char kStartMaximized[] = "start-maximized"; |
1147 | 1147 |
1148 // Controls the width of time-of-day filters on the 'suggested' ntp page, in | |
1149 // minutes. | |
1150 const char kSuggestionNtpFilterWidth[] = "suggestion-ntp-filter-width"; | |
brettw
2012/05/14 18:03:12
Please try to remember to remove these when you're
Rune Fevang
2012/05/15 01:32:42
Will do.
| |
1151 | |
1152 // Enables a normal distribution dropoff to the relevancy of visits with respect | |
1153 // to the time of day. | |
1154 const char kSuggestionNtpGaussianFilter[] = "suggestion-ntp-gaussian-filter"; | |
1155 | |
1156 // Enables a linear dropoff to the relevancy of visits with respect to the time | |
1157 // of day. | |
1158 const char kSuggestionNtpLinearFilter[] = "suggestion-ntp-linear-filter"; | |
1159 | |
1148 // Allows insecure XMPP connections for sync (for testing). | 1160 // Allows insecure XMPP connections for sync (for testing). |
1149 const char kSyncAllowInsecureXmppConnection[] = | 1161 const char kSyncAllowInsecureXmppConnection[] = |
1150 "sync-allow-insecure-xmpp-connection"; | 1162 "sync-allow-insecure-xmpp-connection"; |
1151 | 1163 |
1152 // Invalidates any login info passed into sync's XMPP connection. | 1164 // Invalidates any login info passed into sync's XMPP connection. |
1153 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; | 1165 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; |
1154 | 1166 |
1155 // Overrides the default notification method for sync. | 1167 // Overrides the default notification method for sync. |
1156 const char kSyncNotificationMethod[] = "sync-notification-method"; | 1168 const char kSyncNotificationMethod[] = "sync-notification-method"; |
1157 | 1169 |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1429 | 1441 |
1430 // ----------------------------------------------------------------------------- | 1442 // ----------------------------------------------------------------------------- |
1431 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1443 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1432 // | 1444 // |
1433 // You were going to just dump your switches here, weren't you? Instead, please | 1445 // You were going to just dump your switches here, weren't you? Instead, please |
1434 // put them in alphabetical order above, or in order inside the appropriate | 1446 // put them in alphabetical order above, or in order inside the appropriate |
1435 // ifdef at the bottom. The order should match the header. | 1447 // ifdef at the bottom. The order should match the header. |
1436 // ----------------------------------------------------------------------------- | 1448 // ----------------------------------------------------------------------------- |
1437 | 1449 |
1438 } // namespace switches | 1450 } // namespace switches |
OLD | NEW |