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