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

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

Issue 11636031: [Fixit Dec-2012] Refactor first_run, very few things should depend on whether the First Run senti... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge up to r174446 Created 7 years, 12 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 685 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 696
697 // The file descriptor limit is set to the value of this switch, subject to the 697 // The file descriptor limit is set to the value of this switch, subject to the
698 // OS hard limits. Useful for testing that file descriptor exhaustion is 698 // OS hard limits. Useful for testing that file descriptor exhaustion is
699 // handled gracefully. 699 // handled gracefully.
700 const char kFileDescriptorLimit[] = "file-descriptor-limit"; 700 const char kFileDescriptorLimit[] = "file-descriptor-limit";
701 701
702 // Displays the First Run experience when the browser is started, regardless of 702 // Displays the First Run experience when the browser is started, regardless of
703 // whether or not it's actually the first run. 703 // whether or not it's actually the first run.
704 const char kFirstRun[] = "first-run"; 704 const char kFirstRun[] = "first-run";
705 705
706 // Force a profile auto-import that would occur on a first run.
707 const char kFirstRunForceImport[] = "first-run-force-import";
Nico 2012/12/21 21:44:22 Why is this getting deleted?
gab 2012/12/21 22:10:35 See previous reply.
708
709 // Enables using GAIA information to populate profile name and icon. 706 // Enables using GAIA information to populate profile name and icon.
710 const char kGaiaProfileInfo[] = "gaia-profile-info"; 707 const char kGaiaProfileInfo[] = "gaia-profile-info";
711 708
712 // Specifies an alternate URL to use for retrieving the search domain for 709 // Specifies an alternate URL to use for retrieving the search domain for
713 // Google. Useful for testing. 710 // Google. Useful for testing.
714 const char kGoogleSearchDomainCheckURL[] = "google-search-domain-check-url"; 711 const char kGoogleSearchDomainCheckURL[] = "google-search-domain-check-url";
715 712
716 // Specifies a custom name for the GSSAPI library to load. 713 // Specifies a custom name for the GSSAPI library to load.
717 const char kGSSAPILibraryName[] = "gssapi-library-name"; 714 const char kGSSAPILibraryName[] = "gssapi-library-name";
718 715
(...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after
1618 1615
1619 // ----------------------------------------------------------------------------- 1616 // -----------------------------------------------------------------------------
1620 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1617 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1621 // 1618 //
1622 // You were going to just dump your switches here, weren't you? Instead, please 1619 // You were going to just dump your switches here, weren't you? Instead, please
1623 // put them in alphabetical order above, or in order inside the appropriate 1620 // put them in alphabetical order above, or in order inside the appropriate
1624 // ifdef at the bottom. The order should match the header. 1621 // ifdef at the bottom. The order should match the header.
1625 // ----------------------------------------------------------------------------- 1622 // -----------------------------------------------------------------------------
1626 1623
1627 } // namespace switches 1624 } // namespace switches
OLDNEW
« chrome/browser/first_run/first_run_browsertest.cc ('K') | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698