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

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

Issue 12670013: Out-of-process import on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Keep Google Toolbar import in-process. Created 7 years, 7 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
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 786 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 // <profile_dir>/Default/TransportSecurity 797 // <profile_dir>/Default/TransportSecurity
798 const char kHstsHosts[] = "hsts-hosts"; 798 const char kHstsHosts[] = "hsts-hosts";
799 799
800 // Causes net::URLFetchers to ignore requests for SSL client certificates, 800 // Causes net::URLFetchers to ignore requests for SSL client certificates,
801 // causing them to attempt an unauthenticated SSL/TLS session. This is intended 801 // causing them to attempt an unauthenticated SSL/TLS session. This is intended
802 // for use when testing various service URLs (eg: kPromoServerURL, kInstantURL, 802 // for use when testing various service URLs (eg: kPromoServerURL, kInstantURL,
803 // kSbURLPrefix, kSyncServiceURL, etc) 803 // kSbURLPrefix, kSyncServiceURL, etc)
804 const char kIgnoreUrlFetcherCertRequests[] = 804 const char kIgnoreUrlFetcherCertRequests[] =
805 "ignore-urlfetcher-cert-requests"; 805 "ignore-urlfetcher-cert-requests";
806 806
807 // Performs importing from another browser. The value associated with this
808 // setting encodes the target browser and what items to import.
809 const char kImport[] = "import";
810
811 // Performs bookmark importing from an HTML file. The value associated with
812 // this setting encodes the file path. It may be used jointly with kImport.
813 const char kImportFromFile[] = "import-from-file";
814
815 // Causes the browser to launch directly in incognito mode. 807 // Causes the browser to launch directly in incognito mode.
816 const char kIncognito[] = "incognito"; 808 const char kIncognito[] = "incognito";
817 809
818 // Causes Chrome to attempt to get metadata from the webstore for the 810 // Causes Chrome to attempt to get metadata from the webstore for the
819 // app/extension ID given, and then prompt the user to download and install it. 811 // app/extension ID given, and then prompt the user to download and install it.
820 const char kInstallFromWebstore[] = "install-from-webstore"; 812 const char kInstallFromWebstore[] = "install-from-webstore";
821 813
822 // Marks a renderer as an Instant process. 814 // Marks a renderer as an Instant process.
823 const char kInstantProcess[] = "instant-process"; 815 const char kInstantProcess[] = "instant-process";
824 816
(...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after
1681 1673
1682 // ----------------------------------------------------------------------------- 1674 // -----------------------------------------------------------------------------
1683 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1675 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1684 // 1676 //
1685 // You were going to just dump your switches here, weren't you? Instead, please 1677 // You were going to just dump your switches here, weren't you? Instead, please
1686 // put them in alphabetical order above, or in order inside the appropriate 1678 // put them in alphabetical order above, or in order inside the appropriate
1687 // ifdef at the bottom. The order should match the header. 1679 // ifdef at the bottom. The order should match the header.
1688 // ----------------------------------------------------------------------------- 1680 // -----------------------------------------------------------------------------
1689 1681
1690 } // namespace switches 1682 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698