| 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 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 // Causes Chrome to attempt to get metadata from the webstore for the | 783 // Causes Chrome to attempt to get metadata from the webstore for the |
| 784 // given item, and then prompt the user to download and install it. | 784 // given item, and then prompt the user to download and install it. |
| 785 const char kLimitedInstallFromWebstore[] = "limited-install-from-webstore"; | 785 const char kLimitedInstallFromWebstore[] = "limited-install-from-webstore"; |
| 786 | 786 |
| 787 // Comma-separated list of directories with component extensions to load. | 787 // Comma-separated list of directories with component extensions to load. |
| 788 const char kLoadComponentExtension[] = "load-component-extension"; | 788 const char kLoadComponentExtension[] = "load-component-extension"; |
| 789 | 789 |
| 790 // Loads an extension from the specified directory. | 790 // Loads an extension from the specified directory. |
| 791 const char kLoadExtension[] = "load-extension"; | 791 const char kLoadExtension[] = "load-extension"; |
| 792 | 792 |
| 793 // Controls which version of the malware and phishing interstitials is shown. | |
| 794 const char kMalwareInterstitialV2[] = "malware-interstitial-v2"; | |
| 795 const char kMalwareInterstitialV3[] = "malware-interstitial-v3"; | |
| 796 const char kMalwareInterstitialV3Advice[] = "malware-interstitial-v3-advice"; | |
| 797 const char kMalwareInterstitialV3Social[] = "malware-interstitial-v3-social"; | |
| 798 const char kMalwareInterstitialV3NotRecommend[] = | |
| 799 "malware-interstitial-v3-not-recommend"; | |
| 800 const char kMalwareInterstitialV3History[] = "malware-interstitial-v3-history"; | |
| 801 | |
| 802 // Makes Chrome default browser | 793 // Makes Chrome default browser |
| 803 const char kMakeDefaultBrowser[] = "make-default-browser"; | 794 const char kMakeDefaultBrowser[] = "make-default-browser"; |
| 804 | 795 |
| 805 // Use to opt-in user into Finch experiment groups. | 796 // Use to opt-in user into Finch experiment groups. |
| 806 const char kManualEnhancedBookmarks[] = "manual-enhanced-bookmarks"; | 797 const char kManualEnhancedBookmarks[] = "manual-enhanced-bookmarks"; |
| 807 const char kManualEnhancedBookmarksOptout[] = | 798 const char kManualEnhancedBookmarksOptout[] = |
| 808 "manual-enhanced-bookmarks-optout"; | 799 "manual-enhanced-bookmarks-optout"; |
| 809 | 800 |
| 810 // Forces the maximum disk space to be used by the media cache, in bytes. | 801 // Forces the maximum disk space to be used by the media cache, in bytes. |
| 811 const char kMediaCacheSize[] = "media-cache-size"; | 802 const char kMediaCacheSize[] = "media-cache-size"; |
| (...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1374 | 1365 |
| 1375 // ----------------------------------------------------------------------------- | 1366 // ----------------------------------------------------------------------------- |
| 1376 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1367 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1377 // | 1368 // |
| 1378 // You were going to just dump your switches here, weren't you? Instead, please | 1369 // You were going to just dump your switches here, weren't you? Instead, please |
| 1379 // put them in alphabetical order above, or in order inside the appropriate | 1370 // put them in alphabetical order above, or in order inside the appropriate |
| 1380 // ifdef at the bottom. The order should match the header. | 1371 // ifdef at the bottom. The order should match the header. |
| 1381 // ----------------------------------------------------------------------------- | 1372 // ----------------------------------------------------------------------------- |
| 1382 | 1373 |
| 1383 } // namespace switches | 1374 } // namespace switches |
| OLD | NEW |