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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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. | 393 // Enables the cookie prompt. |
394 const char kEnableCookiePrompt[] = "enable-cookie-prompt"; | 394 const char kEnableCookiePrompt[] = "enable-cookie-prompt"; |
395 | 395 |
| 396 // Enable CoreLocation geoposition data provider |
| 397 const char kEnableCoreLocation[] = "enable-core-location"; |
| 398 |
396 // Enables device motion events. | 399 // Enables device motion events. |
397 const char kEnableDeviceMotion[] = "enable-device-motion"; | 400 const char kEnableDeviceMotion[] = "enable-device-motion"; |
398 | 401 |
399 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; | 402 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; |
400 | 403 |
401 // Enables extension APIs that are in development. | 404 // Enables extension APIs that are in development. |
402 const char kEnableExperimentalExtensionApis[] = | 405 const char kEnableExperimentalExtensionApis[] = |
403 "enable-experimental-extension-apis"; | 406 "enable-experimental-extension-apis"; |
404 | 407 |
405 // Enable experimental timeline API. | 408 // Enable experimental timeline API. |
(...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1262 | 1265 |
1263 // ----------------------------------------------------------------------------- | 1266 // ----------------------------------------------------------------------------- |
1264 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1267 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1265 // | 1268 // |
1266 // You were going to just dump your switches here, weren't you? Instead, | 1269 // You were going to just dump your switches here, weren't you? Instead, |
1267 // please put them in alphabetical order above, or in order inside the | 1270 // please put them in alphabetical order above, or in order inside the |
1268 // appropriate ifdef at the bottom. The order should match the header. | 1271 // appropriate ifdef at the bottom. The order should match the header. |
1269 // ----------------------------------------------------------------------------- | 1272 // ----------------------------------------------------------------------------- |
1270 | 1273 |
1271 } // namespace switches | 1274 } // namespace switches |
OLD | NEW |