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

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

Issue 10823217: Create/Delete windows profile shortcuts (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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
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 1043 matching lines...) Expand 10 before | Expand all | Expand 10 after
1054 // Disable saving the printer and settings between sessions. 1054 // Disable saving the printer and settings between sessions.
1055 const char kPrintSettingsReset[] = "print-settings-reset"; 1055 const char kPrintSettingsReset[] = "print-settings-reset";
1056 1056
1057 // Outputs the product version information and quit. Used as an internal api to 1057 // Outputs the product version information and quit. Used as an internal api to
1058 // detect the installed version of Chrome on Linux. 1058 // detect the installed version of Chrome on Linux.
1059 const char kProductVersion[] = "product-version"; 1059 const char kProductVersion[] = "product-version";
1060 1060
1061 // Selects directory of profile to associate with the first browser launched. 1061 // Selects directory of profile to associate with the first browser launched.
1062 const char kProfileDirectory[] = "profile-directory"; 1062 const char kProfileDirectory[] = "profile-directory";
1063 1063
1064 // Enables the windows profile desktop shortcuts feature.
SteveT 2012/08/15 18:29:41 nit: windows -> Windows
Halli 2012/08/15 19:29:59 Done.
1065 const char kProfileDesktopShortcuts[] = "enable-profile-desktop-shortcuts";
1066
1064 // Starts the sampling based profiler for the browser process at startup. This 1067 // Starts the sampling based profiler for the browser process at startup. This
1065 // will only work if chrome has been built with the gyp variable profiling=1. 1068 // will only work if chrome has been built with the gyp variable profiling=1.
1066 // The output will go to the value of kProfilingFile. 1069 // The output will go to the value of kProfilingFile.
1067 const char kProfilingAtStart[] = "profiling-at-start"; 1070 const char kProfilingAtStart[] = "profiling-at-start";
1068 1071
1069 // Specifies a location for profiling output. This will only work if chrome has 1072 // Specifies a location for profiling output. This will only work if chrome has
1070 // been built with the gyp variable profiling=1. 1073 // been built with the gyp variable profiling=1.
1071 // 1074 //
1072 // {pid} if present will be replaced by the pid of the process. 1075 // {pid} if present will be replaced by the pid of the process.
1073 // {count} if present will be incremented each time a profile is generated 1076 // {count} if present will be incremented each time a profile is generated
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
1549 1552
1550 // ----------------------------------------------------------------------------- 1553 // -----------------------------------------------------------------------------
1551 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1554 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1552 // 1555 //
1553 // You were going to just dump your switches here, weren't you? Instead, please 1556 // You were going to just dump your switches here, weren't you? Instead, please
1554 // put them in alphabetical order above, or in order inside the appropriate 1557 // put them in alphabetical order above, or in order inside the appropriate
1555 // ifdef at the bottom. The order should match the header. 1558 // ifdef at the bottom. The order should match the header.
1556 // ----------------------------------------------------------------------------- 1559 // -----------------------------------------------------------------------------
1557 1560
1558 } // namespace switches 1561 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698