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

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

Issue 10911222: Chrome OS should open to empty desktop when session restore is empty. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup + fix RestoreOnStartupPolicyTest, StartupBrowserCreatorTest Created 8 years, 3 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 1343 matching lines...) Expand 10 before | Expand all | Expand 10 after
1354 // Use the tablet specific UI components when available. 1354 // Use the tablet specific UI components when available.
1355 const char kTabletUI[] = "tablet-ui"; 1355 const char kTabletUI[] = "tablet-ui";
1356 #endif 1356 #endif
1357 1357
1358 #if defined(OS_CHROMEOS) 1358 #if defined(OS_CHROMEOS)
1359 // When wallpaper boot animation is not disabled this switch 1359 // When wallpaper boot animation is not disabled this switch
1360 // is used to override OOBE/sign in WebUI init type. 1360 // is used to override OOBE/sign in WebUI init type.
1361 // Possible values: parallel|postpone. Default: parallel. 1361 // Possible values: parallel|postpone. Default: parallel.
1362 const char kAshWebUIInit[] = "ash-webui-init"; 1362 const char kAshWebUIInit[] = "ash-webui-init";
1363 1363
1364 // ChromeOS defaults to empty desktop. Browser tests may need to add
1365 // this switch so that at list one browser instance is created on startup.
sky 2012/09/12 15:07:20 list -> least
Nikita (slow) 2012/09/12 15:13:32 Done.
1366 // TODO(nkostylev): Investigate if this switch could be removed.
1367 // (http://crbug.com/148675)
1368 const char kCreateBrowserOnStartupForTests[] =
1369 "create-browser-on-startup-for-tests";
1370
1364 // Disables wallpaper boot animation (except of OOBE case). 1371 // Disables wallpaper boot animation (except of OOBE case).
1365 const char kDisableBootAnimation[] = "disable-boot-animation"; 1372 const char kDisableBootAnimation[] = "disable-boot-animation";
1366 1373
1367 // Disables gdata content provider. 1374 // Disables gdata content provider.
1368 const char kDisableGData[] = "disable-gdata"; 1375 const char kDisableGData[] = "disable-gdata";
1369 1376
1370 // Disables new WebRTC implementation of user image picker. 1377 // Disables new WebRTC implementation of user image picker.
1371 const char kDisableHtml5Camera[] = "disable-html5-camera"; 1378 const char kDisableHtml5Camera[] = "disable-html5-camera";
1372 1379
1373 // Avoid doing expensive animations upon login. 1380 // Avoid doing expensive animations upon login.
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
1576 1583
1577 // ----------------------------------------------------------------------------- 1584 // -----------------------------------------------------------------------------
1578 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1585 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1579 // 1586 //
1580 // You were going to just dump your switches here, weren't you? Instead, please 1587 // You were going to just dump your switches here, weren't you? Instead, please
1581 // put them in alphabetical order above, or in order inside the appropriate 1588 // put them in alphabetical order above, or in order inside the appropriate
1582 // ifdef at the bottom. The order should match the header. 1589 // ifdef at the bottom. The order should match the header.
1583 // ----------------------------------------------------------------------------- 1590 // -----------------------------------------------------------------------------
1584 1591
1585 } // namespace switches 1592 } // namespace switches
OLDNEW
« chrome/browser/ui/startup/startup_browser_creator_impl.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