| 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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 // Enables device motion events. | 464 // Enables device motion events. |
| 465 const char kEnableDeviceMotion[] = "enable-device-motion"; | 465 const char kEnableDeviceMotion[] = "enable-device-motion"; |
| 466 | 466 |
| 467 // Enable DNS side checking of certificates. Still experimental, should only | 467 // Enable DNS side checking of certificates. Still experimental, should only |
| 468 // be used by developers at the current time. | 468 // be used by developers at the current time. |
| 469 const char kEnableDNSCertProvenanceChecking[] = | 469 const char kEnableDNSCertProvenanceChecking[] = |
| 470 "enable-dns-cert-provenance-checking"; | 470 "enable-dns-cert-provenance-checking"; |
| 471 | 471 |
| 472 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; | 472 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; |
| 473 | 473 |
| 474 // Enables app manifest features that are in development. |
| 475 const char kEnableExperimentalAppManifests[] = |
| 476 "enable-experimental-app-manifests"; |
| 477 |
| 474 // Enables extension APIs that are in development. | 478 // Enables extension APIs that are in development. |
| 475 const char kEnableExperimentalExtensionApis[] = | 479 const char kEnableExperimentalExtensionApis[] = |
| 476 "enable-experimental-extension-apis"; | 480 "enable-experimental-extension-apis"; |
| 477 | 481 |
| 478 // Enable experimental timeline API. | 482 // Enable experimental timeline API. |
| 479 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; | 483 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; |
| 480 | 484 |
| 481 // Enable the fastback page cache. | 485 // Enable the fastback page cache. |
| 482 const char kEnableFastback[] = "enable-fastback"; | 486 const char kEnableFastback[] = "enable-fastback"; |
| 483 | 487 |
| (...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1372 | 1376 |
| 1373 // ----------------------------------------------------------------------------- | 1377 // ----------------------------------------------------------------------------- |
| 1374 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1378 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1375 // | 1379 // |
| 1376 // You were going to just dump your switches here, weren't you? Instead, | 1380 // You were going to just dump your switches here, weren't you? Instead, |
| 1377 // please put them in alphabetical order above, or in order inside the | 1381 // please put them in alphabetical order above, or in order inside the |
| 1378 // appropriate ifdef at the bottom. The order should match the header. | 1382 // appropriate ifdef at the bottom. The order should match the header. |
| 1379 // ----------------------------------------------------------------------------- | 1383 // ----------------------------------------------------------------------------- |
| 1380 | 1384 |
| 1381 } // namespace switches | 1385 } // namespace switches |
| OLD | NEW |