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