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

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

Issue 12381002: Improve network stub behavior (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: s/res/enabled Created 7 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chromeos/chromeos_switches.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 1446 matching lines...) Expand 10 before | Expand all | Expand 10 after
1457 1457
1458 // Enables file prefetching in Google Drive Client for Chrome OS. 1458 // Enables file prefetching in Google Drive Client for Chrome OS.
1459 const char kEnableDrivePrefetch[] = "enable-drive-prefetch"; 1459 const char kEnableDrivePrefetch[] = "enable-drive-prefetch";
1460 1460
1461 // Avoid doing expensive animations upon login. 1461 // Avoid doing expensive animations upon login.
1462 const char kDisableLoginAnimations[] = "disable-login-animations"; 1462 const char kDisableLoginAnimations[] = "disable-login-animations";
1463 1463
1464 // Avoid doing animations upon oobe. 1464 // Avoid doing animations upon oobe.
1465 const char kDisableOobeAnimation[] = "disable-oobe-animation"; 1465 const char kDisableOobeAnimation[] = "disable-oobe-animation";
1466 1466
1467 // Disables fake ethernet network on the login screen.
1468 const char kDisableStubEthernet[] = "disable-stub-ethernet";
1469
1470 // Enable Kiosk app mode for ChromeOS. 1467 // Enable Kiosk app mode for ChromeOS.
1471 const char kEnableAppMode[] = "enable-app-mode"; 1468 const char kEnableAppMode[] = "enable-app-mode";
1472 1469
1473 // Enable "interactive" mode for stub implemenations (e.g. NetworkLibrary)
1474 const char kEnableStubInteractive[] = "enable-stub-interactive";
1475
1476 // Enables component extension that initializes background pages of 1470 // Enables component extension that initializes background pages of
1477 // certain hosted applications. 1471 // certain hosted applications.
1478 const char kEnableBackgroundLoader[] = "enable-background-loader"; 1472 const char kEnableBackgroundLoader[] = "enable-background-loader";
1479 1473
1480 // Enables Chrome Captive Portal detector, which initiates Captive 1474 // Enables Chrome Captive Portal detector, which initiates Captive
1481 // Portal detection for new active networks. 1475 // Portal detection for new active networks.
1482 const char kEnableChromeCaptivePortalDetector[] = 1476 const char kEnableChromeCaptivePortalDetector[] =
1483 "enable-chrome-captive-portal-detector"; 1477 "enable-chrome-captive-portal-detector";
1484 1478
1485 // Enables metadata prefetching in Google Drive Client for Chrome OS. 1479 // Enables metadata prefetching in Google Drive Client for Chrome OS.
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
1676 1670
1677 // ----------------------------------------------------------------------------- 1671 // -----------------------------------------------------------------------------
1678 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1672 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1679 // 1673 //
1680 // You were going to just dump your switches here, weren't you? Instead, please 1674 // You were going to just dump your switches here, weren't you? Instead, please
1681 // put them in alphabetical order above, or in order inside the appropriate 1675 // put them in alphabetical order above, or in order inside the appropriate
1682 // ifdef at the bottom. The order should match the header. 1676 // ifdef at the bottom. The order should match the header.
1683 // ----------------------------------------------------------------------------- 1677 // -----------------------------------------------------------------------------
1684 1678
1685 } // namespace switches 1679 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chromeos/chromeos_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698