| 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 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 const char kDiskCacheDir[] = "disk-cache-dir"; | 513 const char kDiskCacheDir[] = "disk-cache-dir"; |
| 514 | 514 |
| 515 // Forces the maximum disk space to be used by the disk cache, in bytes. | 515 // Forces the maximum disk space to be used by the disk cache, in bytes. |
| 516 const char kDiskCacheSize[] = "disk-cache-size"; | 516 const char kDiskCacheSize[] = "disk-cache-size"; |
| 517 | 517 |
| 518 const char kDnsLogDetails[] = "dns-log-details"; | 518 const char kDnsLogDetails[] = "dns-log-details"; |
| 519 | 519 |
| 520 // Disables prefetching of DNS information. | 520 // Disables prefetching of DNS information. |
| 521 const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; | 521 const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; |
| 522 | 522 |
| 523 // Requests that a running browser process dump its collected histograms to a |
| 524 // given file. |
| 525 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; |
| 526 |
| 523 // If set, Flash fullscreen widgets are embedded within the browser window and | 527 // If set, Flash fullscreen widgets are embedded within the browser window and |
| 524 // with the same UX as HTML5 fullscreen. | 528 // with the same UX as HTML5 fullscreen. |
| 525 // | 529 // |
| 526 // TODO(miu): This feature is a work in-progress. It should not be enabled by | 530 // TODO(miu): This feature is a work in-progress. It should not be enabled by |
| 527 // default until going through a formal UX review, and all comments/concerns on | 531 // default until going through a formal UX review, and all comments/concerns on |
| 528 // the crbug are addressed. http://crbug.com/290403 | 532 // the crbug are addressed. http://crbug.com/290403 |
| 529 const char kEmbedFlashFullscreen[] = "embed-flash-fullscreen"; | 533 const char kEmbedFlashFullscreen[] = "embed-flash-fullscreen"; |
| 530 | 534 |
| 531 // Enables the <adview> tag in packaged apps. | 535 // Enables the <adview> tag in packaged apps. |
| 532 const char kEnableAdview[] = "enable-adview"; | 536 const char kEnableAdview[] = "enable-adview"; |
| (...skipping 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1633 | 1637 |
| 1634 // ----------------------------------------------------------------------------- | 1638 // ----------------------------------------------------------------------------- |
| 1635 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1639 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1636 // | 1640 // |
| 1637 // You were going to just dump your switches here, weren't you? Instead, please | 1641 // You were going to just dump your switches here, weren't you? Instead, please |
| 1638 // put them in alphabetical order above, or in order inside the appropriate | 1642 // put them in alphabetical order above, or in order inside the appropriate |
| 1639 // ifdef at the bottom. The order should match the header. | 1643 // ifdef at the bottom. The order should match the header. |
| 1640 // ----------------------------------------------------------------------------- | 1644 // ----------------------------------------------------------------------------- |
| 1641 | 1645 |
| 1642 } // namespace switches | 1646 } // namespace switches |
| OLD | NEW |