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

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

Issue 23676005: [Webapps] Add switch to about:flags (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | 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 1466 matching lines...) Expand 10 before | Expand all | Expand 10 after
1477 #if defined(OS_ANDROID) || defined(OS_IOS) 1477 #if defined(OS_ANDROID) || defined(OS_IOS)
1478 // Enable SPDY proxy. 1478 // Enable SPDY proxy.
1479 const char kEnableSpdyProxyAuth[] = "enable-spdy-proxy-auth"; 1479 const char kEnableSpdyProxyAuth[] = "enable-spdy-proxy-auth";
1480 #endif // defined(OS_ANDROID) || defined(OS_IOS) 1480 #endif // defined(OS_ANDROID) || defined(OS_IOS)
1481 1481
1482 #if defined(OS_ANDROID) 1482 #if defined(OS_ANDROID)
1483 // Enable the accessibility tab switcher. 1483 // Enable the accessibility tab switcher.
1484 const char kEnableAccessibilityTabSwitcher[] = 1484 const char kEnableAccessibilityTabSwitcher[] =
1485 "enable-accessibility-tab-switcher"; 1485 "enable-accessibility-tab-switcher";
1486 1486
1487 // Makes the "Add to Homescreen" shortcut visible.
1488 const char kEnableAddToHomescreen[] = "enable-add-to-homescreen";
1489
1487 // Enables the new NTP. 1490 // Enables the new NTP.
1488 const char kEnableNewNTP[] = "enable-new-ntp"; 1491 const char kEnableNewNTP[] = "enable-new-ntp";
1489 1492
1490 // Pops the translate infobar if possible. 1493 // Pops the translate infobar if possible.
1491 const char kEnableTranslate[] = "enable-translate"; 1494 const char kEnableTranslate[] = "enable-translate";
1492 1495
1493 // Registers for cloud policy using the BROWSER client type instead of the 1496 // Registers for cloud policy using the BROWSER client type instead of the
1494 // ANDROID_BROWSER type. This enables skipping the server whitelist. 1497 // ANDROID_BROWSER type. This enables skipping the server whitelist.
1495 // TODO(joaodasilva): remove this. http://crbug.com/248527 1498 // TODO(joaodasilva): remove this. http://crbug.com/248527
1496 const char kFakeCloudPolicyType[] = "fake-cloud-policy-type"; 1499 const char kFakeCloudPolicyType[] = "fake-cloud-policy-type";
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
1600 1603
1601 // ----------------------------------------------------------------------------- 1604 // -----------------------------------------------------------------------------
1602 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1605 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1603 // 1606 //
1604 // You were going to just dump your switches here, weren't you? Instead, please 1607 // You were going to just dump your switches here, weren't you? Instead, please
1605 // put them in alphabetical order above, or in order inside the appropriate 1608 // put them in alphabetical order above, or in order inside the appropriate
1606 // ifdef at the bottom. The order should match the header. 1609 // ifdef at the bottom. The order should match the header.
1607 // ----------------------------------------------------------------------------- 1610 // -----------------------------------------------------------------------------
1608 1611
1609 } // namespace switches 1612 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698