| 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 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 // Enables device motion events. | 468 // Enables device motion events. |
| 469 const char kEnableDeviceMotion[] = "enable-device-motion"; | 469 const char kEnableDeviceMotion[] = "enable-device-motion"; |
| 470 | 470 |
| 471 // Enable DNS side checking of certificates. Still experimental, should only | 471 // Enable DNS side checking of certificates. Still experimental, should only |
| 472 // be used by developers at the current time. | 472 // be used by developers at the current time. |
| 473 const char kEnableDNSCertProvenanceChecking[] = | 473 const char kEnableDNSCertProvenanceChecking[] = |
| 474 "enable-dns-cert-provenance-checking"; | 474 "enable-dns-cert-provenance-checking"; |
| 475 | 475 |
| 476 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; | 476 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; |
| 477 | 477 |
| 478 // Enables app manifest features that are in development. |
| 479 const char kEnableExperimentalAppManifests[] = |
| 480 "enable-experimental-app-manifests"; |
| 481 |
| 478 // Enables extension APIs that are in development. | 482 // Enables extension APIs that are in development. |
| 479 const char kEnableExperimentalExtensionApis[] = | 483 const char kEnableExperimentalExtensionApis[] = |
| 480 "enable-experimental-extension-apis"; | 484 "enable-experimental-extension-apis"; |
| 481 | 485 |
| 482 // Enable experimental timeline API. | 486 // Enable experimental timeline API. |
| 483 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; | 487 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; |
| 484 | 488 |
| 485 // Enable the fastback page cache. | 489 // Enable the fastback page cache. |
| 486 const char kEnableFastback[] = "enable-fastback"; | 490 const char kEnableFastback[] = "enable-fastback"; |
| 487 | 491 |
| (...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1245 | 1249 |
| 1246 // ----------------------------------------------------------------------------- | 1250 // ----------------------------------------------------------------------------- |
| 1247 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1251 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1248 // | 1252 // |
| 1249 // You were going to just dump your switches here, weren't you? Instead, | 1253 // You were going to just dump your switches here, weren't you? Instead, |
| 1250 // please put them in alphabetical order above, or in order inside the | 1254 // please put them in alphabetical order above, or in order inside the |
| 1251 // appropriate ifdef at the bottom. The order should match the header. | 1255 // appropriate ifdef at the bottom. The order should match the header. |
| 1252 // ----------------------------------------------------------------------------- | 1256 // ----------------------------------------------------------------------------- |
| 1253 | 1257 |
| 1254 } // namespace switches | 1258 } // namespace switches |
| OLD | NEW |