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

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

Issue 2149003: Relanding 48042... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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') | chrome/common/extensions/extension.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 96
97 // Triggers a pletora of diagnostic modes. 97 // Triggers a pletora of diagnostic modes.
98 const char kDiagnostics[] = "diagnostics"; 98 const char kDiagnostics[] = "diagnostics";
99 99
100 // Disables the alternate window station for the renderer. 100 // Disables the alternate window station for the renderer.
101 const char kDisableAltWinstation[] = "disable-winsta"; 101 const char kDisableAltWinstation[] = "disable-winsta";
102 102
103 // Disable the ApplicationCache. 103 // Disable the ApplicationCache.
104 const char kDisableApplicationCache[] = "disable-application-cache"; 104 const char kDisableApplicationCache[] = "disable-application-cache";
105 105
106 // Disables the app launcher popup when a new tab is created, directly creates
107 // a tab instead. Takes precedence over kAppLauncherForNewTab.
108 // TODO(jcivelli): http://crbug.com/44089 this flag is required for some tests
109 // to work, as showing the app launcher is the default on
110 // ChromeOS but not on other platforms. Tests should be fixed
111 // once it becomes the default behavior on all platforms.
112 const char kDisableAppsPanel[] = "disable-apps-panel";
113
114 // Replaces the audio IPC layer for <audio> and <video> with a mock audio 106 // Replaces the audio IPC layer for <audio> and <video> with a mock audio
115 // device, useful when using remote desktop or machines without sound cards. 107 // device, useful when using remote desktop or machines without sound cards.
116 // This is temporary until we fix the underlying problem. 108 // This is temporary until we fix the underlying problem.
117 // 109 //
118 // TODO(scherkus): remove --disable-audio when we have a proper fallback 110 // TODO(scherkus): remove --disable-audio when we have a proper fallback
119 // mechanism. 111 // mechanism.
120 const char kDisableAudio[] = "disable-audio"; 112 const char kDisableAudio[] = "disable-audio";
121 113
122 // Disable CNAME lookup of the host when generating the Kerberos SPN for a 114 // Disable CNAME lookup of the host when generating the Kerberos SPN for a
123 // Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN 115 // Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN
(...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after
975 967
976 // ----------------------------------------------------------------------------- 968 // -----------------------------------------------------------------------------
977 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 969 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
978 // 970 //
979 // You were going to just dump your switches here, weren't you? Instead, 971 // You were going to just dump your switches here, weren't you? Instead,
980 // please put them in alphabetical order above, or in order inside the 972 // please put them in alphabetical order above, or in order inside the
981 // appropriate ifdef at the bottom. The order should match the header. 973 // appropriate ifdef at the bottom. The order should match the header.
982 // ----------------------------------------------------------------------------- 974 // -----------------------------------------------------------------------------
983 975
984 } // namespace switches 976 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/extension.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698