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

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

Issue 186483004: Add a skeleton Start Page to the experimental app list. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ares_change_experimental_animation
Patch Set: rework Created 6 years, 9 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 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after
1284 1284
1285 // Causes the process to run as a service process. 1285 // Causes the process to run as a service process.
1286 const char kServiceProcess[] = "service"; 1286 const char kServiceProcess[] = "service";
1287 1287
1288 // Sets a token in the token service, for testing. 1288 // Sets a token in the token service, for testing.
1289 const char kSetToken[] = "set-token"; 1289 const char kSetToken[] = "set-token";
1290 1290
1291 // If true the app list will be shown. 1291 // If true the app list will be shown.
1292 const char kShowAppList[] = "show-app-list"; 1292 const char kShowAppList[] = "show-app-list";
1293 1293
1294 // If true the app list will show the start page webui.
1295 const char kShowAppListStartPage[] = "show-app-list-start-page";
1296
1297 // See kHideIcons. 1294 // See kHideIcons.
1298 const char kShowIcons[] = "show-icons"; 1295 const char kShowIcons[] = "show-icons";
1299 1296
1300 // Marks a renderer as the signin process. 1297 // Marks a renderer as the signin process.
1301 const char kSigninProcess[] = "signin-process"; 1298 const char kSigninProcess[] = "signin-process";
1302 1299
1303 // Does not show an infobar when an extension attaches to a page using 1300 // Does not show an infobar when an extension attaches to a page using
1304 // chrome.debugger page. Required to attach to extension background pages. 1301 // chrome.debugger page. Required to attach to extension background pages.
1305 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api"; 1302 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api";
1306 1303
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
1633 1630
1634 // ----------------------------------------------------------------------------- 1631 // -----------------------------------------------------------------------------
1635 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1632 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1636 // 1633 //
1637 // You were going to just dump your switches here, weren't you? Instead, please 1634 // You were going to just dump your switches here, weren't you? Instead, please
1638 // put them in alphabetical order above, or in order inside the appropriate 1635 // put them in alphabetical order above, or in order inside the appropriate
1639 // ifdef at the bottom. The order should match the header. 1636 // ifdef at the bottom. The order should match the header.
1640 // ----------------------------------------------------------------------------- 1637 // -----------------------------------------------------------------------------
1641 1638
1642 } // namespace switches 1639 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698