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