| 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 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 | 768 |
| 769 // Comma-separated list of directories with component extensions to load. | 769 // Comma-separated list of directories with component extensions to load. |
| 770 const char kLoadComponentExtension[] = "load-component-extension"; | 770 const char kLoadComponentExtension[] = "load-component-extension"; |
| 771 | 771 |
| 772 // Loads an extension from the specified directory. | 772 // Loads an extension from the specified directory. |
| 773 const char kLoadExtension[] = "load-extension"; | 773 const char kLoadExtension[] = "load-extension"; |
| 774 | 774 |
| 775 // Makes Chrome default browser | 775 // Makes Chrome default browser |
| 776 const char kMakeDefaultBrowser[] = "make-default-browser"; | 776 const char kMakeDefaultBrowser[] = "make-default-browser"; |
| 777 | 777 |
| 778 // Use to opt-in user into Finch experiment groups. | |
| 779 const char kManualEnhancedBookmarks[] = "manual-enhanced-bookmarks"; | |
| 780 const char kManualEnhancedBookmarksOptout[] = | |
| 781 "manual-enhanced-bookmarks-optout"; | |
| 782 | |
| 783 // Use to opt-in to marking HTTP as non-secure. | 778 // Use to opt-in to marking HTTP as non-secure. |
| 784 const char kMarkNonSecureAs[] = "mark-non-secure-as"; | 779 const char kMarkNonSecureAs[] = "mark-non-secure-as"; |
| 785 const char kMarkNonSecureAsNeutral[] = "neutral"; | 780 const char kMarkNonSecureAsNeutral[] = "neutral"; |
| 786 const char kMarkNonSecureAsDubious[] = "dubious"; | 781 const char kMarkNonSecureAsDubious[] = "dubious"; |
| 787 const char kMarkNonSecureAsNonSecure[] = "non-secure"; | 782 const char kMarkNonSecureAsNonSecure[] = "non-secure"; |
| 788 | 783 |
| 789 // Forces the maximum disk space to be used by the media cache, in bytes. | 784 // Forces the maximum disk space to be used by the media cache, in bytes. |
| 790 const char kMediaCacheSize[] = "media-cache-size"; | 785 const char kMediaCacheSize[] = "media-cache-size"; |
| 791 | 786 |
| 792 // Enables histograming of tasks served by MessageLoop. See | 787 // Enables histograming of tasks served by MessageLoop. See |
| (...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1399 | 1394 |
| 1400 // ----------------------------------------------------------------------------- | 1395 // ----------------------------------------------------------------------------- |
| 1401 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1396 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1402 // | 1397 // |
| 1403 // You were going to just dump your switches here, weren't you? Instead, please | 1398 // You were going to just dump your switches here, weren't you? Instead, please |
| 1404 // put them in alphabetical order above, or in order inside the appropriate | 1399 // put them in alphabetical order above, or in order inside the appropriate |
| 1405 // ifdef at the bottom. The order should match the header. | 1400 // ifdef at the bottom. The order should match the header. |
| 1406 // ----------------------------------------------------------------------------- | 1401 // ----------------------------------------------------------------------------- |
| 1407 | 1402 |
| 1408 } // namespace switches | 1403 } // namespace switches |
| OLD | NEW |