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