| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 // Enables device motion events. | 498 // Enables device motion events. |
| 499 const char kEnableDeviceMotion[] = "enable-device-motion"; | 499 const char kEnableDeviceMotion[] = "enable-device-motion"; |
| 500 | 500 |
| 501 // Enable DNS side checking of certificates. Still experimental, should only | 501 // Enable DNS side checking of certificates. Still experimental, should only |
| 502 // be used by developers at the current time. | 502 // be used by developers at the current time. |
| 503 const char kEnableDNSCertProvenanceChecking[] = | 503 const char kEnableDNSCertProvenanceChecking[] = |
| 504 "enable-dns-cert-provenance-checking"; | 504 "enable-dns-cert-provenance-checking"; |
| 505 | 505 |
| 506 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; | 506 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; |
| 507 | 507 |
| 508 // Enables app manifest features that are in development. |
| 509 const char kEnableExperimentalAppManifests[] = |
| 510 "enable-experimental-app-manifests"; |
| 511 |
| 508 // Enables extension APIs that are in development. | 512 // Enables extension APIs that are in development. |
| 509 const char kEnableExperimentalExtensionApis[] = | 513 const char kEnableExperimentalExtensionApis[] = |
| 510 "enable-experimental-extension-apis"; | 514 "enable-experimental-extension-apis"; |
| 511 | 515 |
| 512 // Enable experimental timeline API. | 516 // Enable experimental timeline API. |
| 513 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; | 517 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; |
| 514 | 518 |
| 515 // Enable the fastback page cache. | 519 // Enable the fastback page cache. |
| 516 const char kEnableFastback[] = "enable-fastback"; | 520 const char kEnableFastback[] = "enable-fastback"; |
| 517 | 521 |
| (...skipping 921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1439 | 1443 |
| 1440 // ----------------------------------------------------------------------------- | 1444 // ----------------------------------------------------------------------------- |
| 1441 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1445 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1442 // | 1446 // |
| 1443 // You were going to just dump your switches here, weren't you? Instead, | 1447 // You were going to just dump your switches here, weren't you? Instead, |
| 1444 // please put them in alphabetical order above, or in order inside the | 1448 // please put them in alphabetical order above, or in order inside the |
| 1445 // appropriate ifdef at the bottom. The order should match the header. | 1449 // appropriate ifdef at the bottom. The order should match the header. |
| 1446 // ----------------------------------------------------------------------------- | 1450 // ----------------------------------------------------------------------------- |
| 1447 | 1451 |
| 1448 } // namespace switches | 1452 } // namespace switches |
| OLD | NEW |