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

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

Powered by Google App Engine
This is Rietveld 408576698