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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 // Enables device motion events. | 472 // Enables device motion events. |
473 const char kEnableDeviceMotion[] = "enable-device-motion"; | 473 const char kEnableDeviceMotion[] = "enable-device-motion"; |
474 | 474 |
475 // Enable DNS side checking of certificates. Still experimental, should only | 475 // Enable DNS side checking of certificates. Still experimental, should only |
476 // be used by developers at the current time. | 476 // be used by developers at the current time. |
477 const char kEnableDNSCertProvenanceChecking[] = | 477 const char kEnableDNSCertProvenanceChecking[] = |
478 "enable-dns-cert-provenance-checking"; | 478 "enable-dns-cert-provenance-checking"; |
479 | 479 |
480 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; | 480 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; |
481 | 481 |
| 482 // Enables app manifest features that are in development. |
| 483 const char kEnableExperimentalAppManifests[] = |
| 484 "enable-experimental-app-manifests"; |
| 485 |
482 // Enables extension APIs that are in development. | 486 // Enables extension APIs that are in development. |
483 const char kEnableExperimentalExtensionApis[] = | 487 const char kEnableExperimentalExtensionApis[] = |
484 "enable-experimental-extension-apis"; | 488 "enable-experimental-extension-apis"; |
485 | 489 |
486 // Enable experimental timeline API. | 490 // Enable experimental timeline API. |
487 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; | 491 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; |
488 | 492 |
489 // Enable the fastback page cache. | 493 // Enable the fastback page cache. |
490 const char kEnableFastback[] = "enable-fastback"; | 494 const char kEnableFastback[] = "enable-fastback"; |
491 | 495 |
(...skipping 891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1383 | 1387 |
1384 // ----------------------------------------------------------------------------- | 1388 // ----------------------------------------------------------------------------- |
1385 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1389 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1386 // | 1390 // |
1387 // You were going to just dump your switches here, weren't you? Instead, | 1391 // You were going to just dump your switches here, weren't you? Instead, |
1388 // please put them in alphabetical order above, or in order inside the | 1392 // please put them in alphabetical order above, or in order inside the |
1389 // appropriate ifdef at the bottom. The order should match the header. | 1393 // appropriate ifdef at the bottom. The order should match the header. |
1390 // ----------------------------------------------------------------------------- | 1394 // ----------------------------------------------------------------------------- |
1391 | 1395 |
1392 } // namespace switches | 1396 } // namespace switches |
OLD | NEW |