| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 const char kDiskCacheDir[] = "disk-cache-dir"; | 503 const char kDiskCacheDir[] = "disk-cache-dir"; |
| 504 | 504 |
| 505 // Forces the maximum disk space to be used by the disk cache, in bytes. | 505 // Forces the maximum disk space to be used by the disk cache, in bytes. |
| 506 const char kDiskCacheSize[] = "disk-cache-size"; | 506 const char kDiskCacheSize[] = "disk-cache-size"; |
| 507 | 507 |
| 508 const char kDnsLogDetails[] = "dns-log-details"; | 508 const char kDnsLogDetails[] = "dns-log-details"; |
| 509 | 509 |
| 510 // Disables prefetching of DNS information. | 510 // Disables prefetching of DNS information. |
| 511 const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; | 511 const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; |
| 512 | 512 |
| 513 // If set, Flash fullscreen widgets are embedded within the browser window and |
| 514 // with the same UX as HTML5 fullscreen. |
| 515 // |
| 516 // TODO(miu): This feature is a work in-progress. It should not be enabled by |
| 517 // default until going through a formal UX review, and all comments/concerns on |
| 518 // the crbug are addressed. http://crbug.com/290403 |
| 519 const char kEmbedFlashFullscreen[] = "embed-flash-fullscreen"; |
| 520 |
| 513 // Enables the <adview> tag in packaged apps. | 521 // Enables the <adview> tag in packaged apps. |
| 514 const char kEnableAdview[] = "enable-adview"; | 522 const char kEnableAdview[] = "enable-adview"; |
| 515 | 523 |
| 516 // If set, the app list will be enabled as if enabled from CWS. | 524 // If set, the app list will be enabled as if enabled from CWS. |
| 517 const char kEnableAppList[] = "enable-app-list"; | 525 const char kEnableAppList[] = "enable-app-list"; |
| 518 | 526 |
| 519 // Enables specifying a "src" attribute on <adview> elements | 527 // Enables specifying a "src" attribute on <adview> elements |
| 520 // (for testing purposes, to skip the whitelist). | 528 // (for testing purposes, to skip the whitelist). |
| 521 const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute"; | 529 const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute"; |
| 522 | 530 |
| (...skipping 1098 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1621 | 1629 |
| 1622 // ----------------------------------------------------------------------------- | 1630 // ----------------------------------------------------------------------------- |
| 1623 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1631 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1624 // | 1632 // |
| 1625 // You were going to just dump your switches here, weren't you? Instead, please | 1633 // You were going to just dump your switches here, weren't you? Instead, please |
| 1626 // put them in alphabetical order above, or in order inside the appropriate | 1634 // put them in alphabetical order above, or in order inside the appropriate |
| 1627 // ifdef at the bottom. The order should match the header. | 1635 // ifdef at the bottom. The order should match the header. |
| 1628 // ----------------------------------------------------------------------------- | 1636 // ----------------------------------------------------------------------------- |
| 1629 | 1637 |
| 1630 } // namespace switches | 1638 } // namespace switches |
| OLD | NEW |