| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 | 383 |
| 384 // Enables establishing a backup TCP connection if a specified timeout is | 384 // Enables establishing a backup TCP connection if a specified timeout is |
| 385 // exceeded. | 385 // exceeded. |
| 386 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; | 386 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; |
| 387 | 387 |
| 388 // Enable requests that webkit labels TargetIsPrefetch. As of | 388 // Enable requests that webkit labels TargetIsPrefetch. As of |
| 389 // writing only <link rel=prefetch...> but also eventually | 389 // writing only <link rel=prefetch...> but also eventually |
| 390 // Link: headers. | 390 // Link: headers. |
| 391 const char kEnableContentPrefetch[] = "enable-content-prefetch"; | 391 const char kEnableContentPrefetch[] = "enable-content-prefetch"; |
| 392 | 392 |
| 393 // Enables the cookie prompt. | |
| 394 const char kEnableCookiePrompt[] = "enable-cookie-prompt"; | |
| 395 | |
| 396 // Enable CoreLocation geoposition data provider | 393 // Enable CoreLocation geoposition data provider |
| 397 const char kEnableCoreLocation[] = "enable-core-location"; | 394 const char kEnableCoreLocation[] = "enable-core-location"; |
| 398 | 395 |
| 399 // Enables device motion events. | 396 // Enables device motion events. |
| 400 const char kEnableDeviceMotion[] = "enable-device-motion"; | 397 const char kEnableDeviceMotion[] = "enable-device-motion"; |
| 401 | 398 |
| 402 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; | 399 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; |
| 403 | 400 |
| 404 // Enables extension APIs that are in development. | 401 // Enables extension APIs that are in development. |
| 405 const char kEnableExperimentalExtensionApis[] = | 402 const char kEnableExperimentalExtensionApis[] = |
| (...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1259 | 1256 |
| 1260 // ----------------------------------------------------------------------------- | 1257 // ----------------------------------------------------------------------------- |
| 1261 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1258 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1262 // | 1259 // |
| 1263 // You were going to just dump your switches here, weren't you? Instead, | 1260 // You were going to just dump your switches here, weren't you? Instead, |
| 1264 // please put them in alphabetical order above, or in order inside the | 1261 // please put them in alphabetical order above, or in order inside the |
| 1265 // appropriate ifdef at the bottom. The order should match the header. | 1262 // appropriate ifdef at the bottom. The order should match the header. |
| 1266 // ----------------------------------------------------------------------------- | 1263 // ----------------------------------------------------------------------------- |
| 1267 | 1264 |
| 1268 } // namespace switches | 1265 } // namespace switches |
| OLD | NEW |