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

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

Issue 352033002: Added --custom-launcher-page. Adds a page to the experimental launcher. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix ash_shell build. Created 6 years, 6 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') | ui/app_list/app_list_view_delegate.h » ('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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 const char kCrashOnHangThreads[] = "crash-on-hang-threads"; 182 const char kCrashOnHangThreads[] = "crash-on-hang-threads";
183 183
184 // Some platforms like ChromeOS default to empty desktop. 184 // Some platforms like ChromeOS default to empty desktop.
185 // Browser tests may need to add this switch so that at least one browser 185 // Browser tests may need to add this switch so that at least one browser
186 // instance is created on startup. 186 // instance is created on startup.
187 // TODO(nkostylev): Investigate if this switch could be removed. 187 // TODO(nkostylev): Investigate if this switch could be removed.
188 // (http://crbug.com/148675) 188 // (http://crbug.com/148675)
189 const char kCreateBrowserOnStartupForTests[] = 189 const char kCreateBrowserOnStartupForTests[] =
190 "create-browser-on-startup-for-tests"; 190 "create-browser-on-startup-for-tests";
191 191
192 // Specifies the chrome-extension:// URL for the contents of an additional page
193 // added to the experimental app launcher.
194 const char kCustomLauncherPage[] = "custom-launcher-page";
195
192 // Enables a frame context menu item that toggles the frame in and out of glass 196 // Enables a frame context menu item that toggles the frame in and out of glass
193 // mode (Windows Vista and up only). 197 // mode (Windows Vista and up only).
194 const char kDebugEnableFrameToggle[] = "debug-enable-frame-toggle"; 198 const char kDebugEnableFrameToggle[] = "debug-enable-frame-toggle";
195 199
196 // Adds debugging entries such as Inspect Element to context menus of packed 200 // Adds debugging entries such as Inspect Element to context menus of packed
197 // apps. 201 // apps.
198 const char kDebugPackedApps[] = "debug-packed-apps"; 202 const char kDebugPackedApps[] = "debug-packed-apps";
199 203
200 // Triggers a plethora of diagnostic modes. 204 // Triggers a plethora of diagnostic modes.
201 const char kDiagnostics[] = "diagnostics"; 205 const char kDiagnostics[] = "diagnostics";
(...skipping 1208 matching lines...) Expand 10 before | Expand all | Expand 10 after
1410 1414
1411 // ----------------------------------------------------------------------------- 1415 // -----------------------------------------------------------------------------
1412 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1416 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1413 // 1417 //
1414 // You were going to just dump your switches here, weren't you? Instead, please 1418 // You were going to just dump your switches here, weren't you? Instead, please
1415 // put them in alphabetical order above, or in order inside the appropriate 1419 // put them in alphabetical order above, or in order inside the appropriate
1416 // ifdef at the bottom. The order should match the header. 1420 // ifdef at the bottom. The order should match the header.
1417 // ----------------------------------------------------------------------------- 1421 // -----------------------------------------------------------------------------
1418 1422
1419 } // namespace switches 1423 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | ui/app_list/app_list_view_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698