Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 445493002: Delete the Safe Browsing V2 interstitial and Finch trial (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removing binary files Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 770 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 // Causes Chrome to attempt to get metadata from the webstore for the 781 // Causes Chrome to attempt to get metadata from the webstore for the
782 // given item, and then prompt the user to download and install it. 782 // given item, and then prompt the user to download and install it.
783 const char kLimitedInstallFromWebstore[] = "limited-install-from-webstore"; 783 const char kLimitedInstallFromWebstore[] = "limited-install-from-webstore";
784 784
785 // Comma-separated list of directories with component extensions to load. 785 // Comma-separated list of directories with component extensions to load.
786 const char kLoadComponentExtension[] = "load-component-extension"; 786 const char kLoadComponentExtension[] = "load-component-extension";
787 787
788 // Loads an extension from the specified directory. 788 // Loads an extension from the specified directory.
789 const char kLoadExtension[] = "load-extension"; 789 const char kLoadExtension[] = "load-extension";
790 790
791 // Controls which version of the malware and phishing interstitials is shown.
792 const char kMalwareInterstitialV2[] = "malware-interstitial-v2";
793 const char kMalwareInterstitialV3[] = "malware-interstitial-v3";
794 const char kMalwareInterstitialV3Advice[] = "malware-interstitial-v3-advice";
795 const char kMalwareInterstitialV3Social[] = "malware-interstitial-v3-social";
796 const char kMalwareInterstitialV3NotRecommend[] =
797 "malware-interstitial-v3-not-recommend";
798 const char kMalwareInterstitialV3History[] = "malware-interstitial-v3-history";
799
800 // Makes Chrome default browser 791 // Makes Chrome default browser
801 const char kMakeDefaultBrowser[] = "make-default-browser"; 792 const char kMakeDefaultBrowser[] = "make-default-browser";
802 793
803 // Use to opt-in user into Finch experiment groups. 794 // Use to opt-in user into Finch experiment groups.
804 const char kManualEnhancedBookmarks[] = "manual-enhanced-bookmarks"; 795 const char kManualEnhancedBookmarks[] = "manual-enhanced-bookmarks";
805 const char kManualEnhancedBookmarksOptout[] = 796 const char kManualEnhancedBookmarksOptout[] =
806 "manual-enhanced-bookmarks-optout"; 797 "manual-enhanced-bookmarks-optout";
807 798
808 // Forces the maximum disk space to be used by the media cache, in bytes. 799 // Forces the maximum disk space to be used by the media cache, in bytes.
809 const char kMediaCacheSize[] = "media-cache-size"; 800 const char kMediaCacheSize[] = "media-cache-size";
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after
1365 1356
1366 // ----------------------------------------------------------------------------- 1357 // -----------------------------------------------------------------------------
1367 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1358 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1368 // 1359 //
1369 // You were going to just dump your switches here, weren't you? Instead, please 1360 // You were going to just dump your switches here, weren't you? Instead, please
1370 // put them in alphabetical order above, or in order inside the appropriate 1361 // put them in alphabetical order above, or in order inside the appropriate
1371 // ifdef at the bottom. The order should match the header. 1362 // ifdef at the bottom. The order should match the header.
1372 // ----------------------------------------------------------------------------- 1363 // -----------------------------------------------------------------------------
1373 1364
1374 } // namespace switches 1365 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698