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

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

Issue 113133004: Flag for auto-reload work. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Switched flag from content to chrome. Created 7 years 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 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 // Enables the network-related benchmarking extensions. 668 // Enables the network-related benchmarking extensions.
669 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; 669 const char kEnableNetBenchmarking[] = "enable-net-benchmarking";
670 670
671 // Enables |NetworkTimeService| to convert local time to network time. 671 // Enables |NetworkTimeService| to convert local time to network time.
672 const char kEnableNetworkTime[] = "enable-network-time"; 672 const char kEnableNetworkTime[] = "enable-network-time";
673 673
674 // Enables NPN with HTTP. It means NPN is enabled but SPDY won't be used. 674 // Enables NPN with HTTP. It means NPN is enabled but SPDY won't be used.
675 // HTTP is still used for all requests. 675 // HTTP is still used for all requests.
676 const char kEnableNpnHttpOnly[] = "enable-npn-http"; 676 const char kEnableNpnHttpOnly[] = "enable-npn-http";
677 677
678 // Enable auto-reload of error pages if offline.
679 const char kEnableOfflineAutoReload[] = "enable-offline-auto-reload";
680
678 // Enables omnibox auto-completion when IME is active. The auto-completion for 681 // Enables omnibox auto-completion when IME is active. The auto-completion for
679 // IME is shown in the same style as the normal(non-IME) auto-completion. 682 // IME is shown in the same style as the normal(non-IME) auto-completion.
680 const char kEnableOmniboxAutoCompletionForIme[] = 683 const char kEnableOmniboxAutoCompletionForIme[] =
681 "enable-omnibox-auto-completion-for-ime"; 684 "enable-omnibox-auto-completion-for-ime";
682 685
683 // Enables panels (always on-top docked pop-up windows). 686 // Enables panels (always on-top docked pop-up windows).
684 const char kEnablePanels[] = "enable-panels"; 687 const char kEnablePanels[] = "enable-panels";
685 688
686 // Enables searching for people from the apps list search box. 689 // Enables searching for people from the apps list search box.
687 const char kDisablePeopleSearch[] = "disable-people-search"; 690 const char kDisablePeopleSearch[] = "disable-people-search";
(...skipping 973 matching lines...) Expand 10 before | Expand all | Expand 10 after
1661 1664
1662 // ----------------------------------------------------------------------------- 1665 // -----------------------------------------------------------------------------
1663 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1666 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1664 // 1667 //
1665 // You were going to just dump your switches here, weren't you? Instead, please 1668 // You were going to just dump your switches here, weren't you? Instead, please
1666 // put them in alphabetical order above, or in order inside the appropriate 1669 // put them in alphabetical order above, or in order inside the appropriate
1667 // ifdef at the bottom. The order should match the header. 1670 // ifdef at the bottom. The order should match the header.
1668 // ----------------------------------------------------------------------------- 1671 // -----------------------------------------------------------------------------
1669 1672
1670 } // namespace switches 1673 } // 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