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

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: rebase on top of https://codereview.chromium.org/15736014/ 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/switch_utils.cc » ('j') | 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 801 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 // <profile_dir>/Default/TransportSecurity 812 // <profile_dir>/Default/TransportSecurity
813 const char kHstsHosts[] = "hsts-hosts"; 813 const char kHstsHosts[] = "hsts-hosts";
814 814
815 // Causes net::URLFetchers to ignore requests for SSL client certificates, 815 // Causes net::URLFetchers to ignore requests for SSL client certificates,
816 // causing them to attempt an unauthenticated SSL/TLS session. This is intended 816 // causing them to attempt an unauthenticated SSL/TLS session. This is intended
817 // for use when testing various service URLs (eg: kPromoServerURL, kInstantURL, 817 // for use when testing various service URLs (eg: kPromoServerURL, kInstantURL,
818 // kSbURLPrefix, kSyncServiceURL, etc) 818 // kSbURLPrefix, kSyncServiceURL, etc)
819 const char kIgnoreUrlFetcherCertRequests[] = 819 const char kIgnoreUrlFetcherCertRequests[] =
820 "ignore-urlfetcher-cert-requests"; 820 "ignore-urlfetcher-cert-requests";
821 821
822 // Performs importing from another browser. The value associated with this
823 // setting encodes the target browser and what items to import.
824 const char kImport[] = "import";
825
826 // Performs bookmark importing from an HTML file. The value associated with
827 // this setting encodes the file path. It may be used jointly with kImport.
828 const char kImportFromFile[] = "import-from-file";
829
830 // Causes the browser to launch directly in incognito mode. 822 // Causes the browser to launch directly in incognito mode.
831 const char kIncognito[] = "incognito"; 823 const char kIncognito[] = "incognito";
832 824
833 // Causes Chrome to attempt to get metadata from the webstore for the 825 // Causes Chrome to attempt to get metadata from the webstore for the
834 // app/extension ID given, and then prompt the user to download and install it. 826 // app/extension ID given, and then prompt the user to download and install it.
835 const char kInstallFromWebstore[] = "install-from-webstore"; 827 const char kInstallFromWebstore[] = "install-from-webstore";
836 828
837 // Marks a renderer as an Instant process. 829 // Marks a renderer as an Instant process.
838 const char kInstantProcess[] = "instant-process"; 830 const char kInstantProcess[] = "instant-process";
839 831
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after
1588 1580
1589 // ----------------------------------------------------------------------------- 1581 // -----------------------------------------------------------------------------
1590 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1582 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1591 // 1583 //
1592 // You were going to just dump your switches here, weren't you? Instead, please 1584 // You were going to just dump your switches here, weren't you? Instead, please
1593 // put them in alphabetical order above, or in order inside the appropriate 1585 // put them in alphabetical order above, or in order inside the appropriate
1594 // ifdef at the bottom. The order should match the header. 1586 // ifdef at the bottom. The order should match the header.
1595 // ----------------------------------------------------------------------------- 1587 // -----------------------------------------------------------------------------
1596 1588
1597 } // namespace switches 1589 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/switch_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698