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

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

Issue 10827146: crbug.com/127841 - Request Tablet Site on CB with touch screen. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: removed spurious newline 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
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 1424 matching lines...) Expand 10 before | Expand all | Expand 10 after
1435 // Use level db for drive metadata storage. 1435 // Use level db for drive metadata storage.
1436 const char kUseLevelDBForGData[] = "use-leveldb-for-gdata"; 1436 const char kUseLevelDBForGData[] = "use-leveldb-for-gdata";
1437 1437
1438 // Enables the redirection of viewable document requests to the Google Document 1438 // Enables the redirection of viewable document requests to the Google Document
1439 // Viewer. 1439 // Viewer.
1440 const char kEnableGView[] = "enable-gview"; 1440 const char kEnableGView[] = "enable-gview";
1441 1441
1442 // Enable Kiosk mode for ChromeOS 1442 // Enable Kiosk mode for ChromeOS
1443 const char kEnableKioskMode[] = "enable-kiosk-mode"; 1443 const char kEnableKioskMode[] = "enable-kiosk-mode";
1444 1444
1445 // Enables request of tablet site (via user agent override).
1446 // Normally, this is only available on Chromebooks with a touch screen.
1447 // The second flag is for testing. It enables it for Chromebooks
1448 // regardless of touch screen availability.
1449 const char kEnableRequestTabletSite[] = "enable-request-tablet-site";
1450 const char kEnableRequestTabletSiteEvenIfNonTouchDevice[] =
1451 "enable-request-tablet-site-even-if-non-touch-device"; // for testing
gone 2012/09/06 18:08:32 Remove the "// for testing"; it's spelled out in t
sschmitz 2012/09/06 18:52:45 Done.
1452
1445 // Enables static ip configuration. This flag should be removed when it's on by 1453 // Enables static ip configuration. This flag should be removed when it's on by
1446 // default. 1454 // default.
1447 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; 1455 const char kEnableStaticIPConfig[] = "enable-static-ip-config";
1448 1456
1449 // Enables discovery and interaction with Bluetooth devices that may not be 1457 // Enables discovery and interaction with Bluetooth devices that may not be
1450 // supported by ChromeOS. 1458 // supported by ChromeOS.
1451 const char kEnableUnsupportedBluetoothDevices[] = 1459 const char kEnableUnsupportedBluetoothDevices[] =
1452 "enable-unsupported-bluetooth-devices"; 1460 "enable-unsupported-bluetooth-devices";
1453 1461
1454 // Passed to Chrome on first boot. Not passed on restart after sign out. 1462 // Passed to Chrome on first boot. Not passed on restart after sign out.
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
1605 1613
1606 // ----------------------------------------------------------------------------- 1614 // -----------------------------------------------------------------------------
1607 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1615 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1608 // 1616 //
1609 // You were going to just dump your switches here, weren't you? Instead, please 1617 // You were going to just dump your switches here, weren't you? Instead, please
1610 // put them in alphabetical order above, or in order inside the appropriate 1618 // put them in alphabetical order above, or in order inside the appropriate
1611 // ifdef at the bottom. The order should match the header. 1619 // ifdef at the bottom. The order should match the header.
1612 // ----------------------------------------------------------------------------- 1620 // -----------------------------------------------------------------------------
1613 1621
1614 } // namespace switches 1622 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698