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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
506 // Enables device motion events. | 506 // Enables device motion events. |
507 const char kEnableDeviceMotion[] = "enable-device-motion"; | 507 const char kEnableDeviceMotion[] = "enable-device-motion"; |
508 | 508 |
509 // Enable DNS side checking of certificates. Still experimental, should only | 509 // Enable DNS side checking of certificates. Still experimental, should only |
510 // be used by developers at the current time. | 510 // be used by developers at the current time. |
511 const char kEnableDNSCertProvenanceChecking[] = | 511 const char kEnableDNSCertProvenanceChecking[] = |
512 "enable-dns-cert-provenance-checking"; | 512 "enable-dns-cert-provenance-checking"; |
513 | 513 |
514 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; | 514 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; |
515 | 515 |
| 516 // Enables app manifest features that are in development. |
| 517 const char kEnableExperimentalAppManifests[] = |
| 518 "enable-experimental-app-manifests"; |
| 519 |
516 // Enables extension APIs that are in development. | 520 // Enables extension APIs that are in development. |
517 const char kEnableExperimentalExtensionApis[] = | 521 const char kEnableExperimentalExtensionApis[] = |
518 "enable-experimental-extension-apis"; | 522 "enable-experimental-extension-apis"; |
519 | 523 |
520 // Enable experimental timeline API. | 524 // Enable experimental timeline API. |
521 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; | 525 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; |
522 | 526 |
523 // Enable the fastback page cache. | 527 // Enable the fastback page cache. |
524 const char kEnableFastback[] = "enable-fastback"; | 528 const char kEnableFastback[] = "enable-fastback"; |
525 | 529 |
(...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1457 | 1461 |
1458 // ----------------------------------------------------------------------------- | 1462 // ----------------------------------------------------------------------------- |
1459 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1463 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1460 // | 1464 // |
1461 // You were going to just dump your switches here, weren't you? Instead, | 1465 // You were going to just dump your switches here, weren't you? Instead, |
1462 // please put them in alphabetical order above, or in order inside the | 1466 // please put them in alphabetical order above, or in order inside the |
1463 // appropriate ifdef at the bottom. The order should match the header. | 1467 // appropriate ifdef at the bottom. The order should match the header. |
1464 // ----------------------------------------------------------------------------- | 1468 // ----------------------------------------------------------------------------- |
1465 | 1469 |
1466 } // namespace switches | 1470 } // namespace switches |
OLD | NEW |