Chromium Code Reviews| 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 780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 791 const char kLoadExtension[] = "load-extension"; | 791 const char kLoadExtension[] = "load-extension"; |
| 792 | 792 |
| 793 // Makes Chrome default browser | 793 // Makes Chrome default browser |
| 794 const char kMakeDefaultBrowser[] = "make-default-browser"; | 794 const char kMakeDefaultBrowser[] = "make-default-browser"; |
| 795 | 795 |
| 796 // Use to opt-in user into Finch experiment groups. | 796 // Use to opt-in user into Finch experiment groups. |
| 797 const char kManualEnhancedBookmarks[] = "manual-enhanced-bookmarks"; | 797 const char kManualEnhancedBookmarks[] = "manual-enhanced-bookmarks"; |
| 798 const char kManualEnhancedBookmarksOptout[] = | 798 const char kManualEnhancedBookmarksOptout[] = |
| 799 "manual-enhanced-bookmarks-optout"; | 799 "manual-enhanced-bookmarks-optout"; |
| 800 | 800 |
| 801 // Use to opt-in to marking HTTP as non-secure. | |
| 802 const char kMarkHttpAsNonSecure[] = "mark-http-as-non-secure"; | |
|
jww
2014/12/20 01:21:57
nit: If I'm not mistaken, another one of those fil
palmer
2014/12/20 01:59:53
Done.
| |
| 803 | |
| 801 // Forces the maximum disk space to be used by the media cache, in bytes. | 804 // Forces the maximum disk space to be used by the media cache, in bytes. |
| 802 const char kMediaCacheSize[] = "media-cache-size"; | 805 const char kMediaCacheSize[] = "media-cache-size"; |
| 803 | 806 |
| 804 // Enables histograming of tasks served by MessageLoop. See | 807 // Enables histograming of tasks served by MessageLoop. See |
| 805 // about:histograms/Loop for results, which show frequency of messages on each | 808 // about:histograms/Loop for results, which show frequency of messages on each |
| 806 // thread, including APC count, object signalling count, etc. | 809 // thread, including APC count, object signalling count, etc. |
| 807 const char kMessageLoopHistogrammer[] = "message-loop-histogrammer"; | 810 const char kMessageLoopHistogrammer[] = "message-loop-histogrammer"; |
| 808 | 811 |
| 809 // Enables the recording of metrics reports but disables reporting. In contrast | 812 // Enables the recording of metrics reports but disables reporting. In contrast |
| 810 // to kDisableMetrics, this executes all the code that a normal client would | 813 // to kDisableMetrics, this executes all the code that a normal client would |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1405 | 1408 |
| 1406 // ----------------------------------------------------------------------------- | 1409 // ----------------------------------------------------------------------------- |
| 1407 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1410 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1408 // | 1411 // |
| 1409 // You were going to just dump your switches here, weren't you? Instead, please | 1412 // You were going to just dump your switches here, weren't you? Instead, please |
| 1410 // put them in alphabetical order above, or in order inside the appropriate | 1413 // put them in alphabetical order above, or in order inside the appropriate |
| 1411 // ifdef at the bottom. The order should match the header. | 1414 // ifdef at the bottom. The order should match the header. |
| 1412 // ----------------------------------------------------------------------------- | 1415 // ----------------------------------------------------------------------------- |
| 1413 | 1416 |
| 1414 } // namespace switches | 1417 } // namespace switches |
| OLD | NEW |