OLD | NEW |
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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 const char kCrashOnHangThreads[] = "crash-on-hang-threads"; | 180 const char kCrashOnHangThreads[] = "crash-on-hang-threads"; |
181 | 181 |
182 // Some platforms like ChromeOS default to empty desktop. | 182 // Some platforms like ChromeOS default to empty desktop. |
183 // Browser tests may need to add this switch so that at least one browser | 183 // Browser tests may need to add this switch so that at least one browser |
184 // instance is created on startup. | 184 // instance is created on startup. |
185 // TODO(nkostylev): Investigate if this switch could be removed. | 185 // TODO(nkostylev): Investigate if this switch could be removed. |
186 // (http://crbug.com/148675) | 186 // (http://crbug.com/148675) |
187 const char kCreateBrowserOnStartupForTests[] = | 187 const char kCreateBrowserOnStartupForTests[] = |
188 "create-browser-on-startup-for-tests"; | 188 "create-browser-on-startup-for-tests"; |
189 | 189 |
190 // Specifies the chrome-extension:// URL for the contents of an additional page | |
191 // added to the experimental app launcher. | |
192 const char kCustomLauncherPage[] = "custom-launcher-page"; | |
193 | |
194 // Enables a frame context menu item that toggles the frame in and out of glass | 190 // Enables a frame context menu item that toggles the frame in and out of glass |
195 // mode (Windows Vista and up only). | 191 // mode (Windows Vista and up only). |
196 const char kDebugEnableFrameToggle[] = "debug-enable-frame-toggle"; | 192 const char kDebugEnableFrameToggle[] = "debug-enable-frame-toggle"; |
197 | 193 |
198 // Adds debugging entries such as Inspect Element to context menus of packed | 194 // Adds debugging entries such as Inspect Element to context menus of packed |
199 // apps. | 195 // apps. |
200 const char kDebugPackedApps[] = "debug-packed-apps"; | 196 const char kDebugPackedApps[] = "debug-packed-apps"; |
201 | 197 |
202 // Triggers a plethora of diagnostic modes. | 198 // Triggers a plethora of diagnostic modes. |
203 const char kDiagnostics[] = "diagnostics"; | 199 const char kDiagnostics[] = "diagnostics"; |
(...skipping 1152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1356 | 1352 |
1357 // ----------------------------------------------------------------------------- | 1353 // ----------------------------------------------------------------------------- |
1358 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1354 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1359 // | 1355 // |
1360 // You were going to just dump your switches here, weren't you? Instead, please | 1356 // You were going to just dump your switches here, weren't you? Instead, please |
1361 // put them in alphabetical order above, or in order inside the appropriate | 1357 // put them in alphabetical order above, or in order inside the appropriate |
1362 // ifdef at the bottom. The order should match the header. | 1358 // ifdef at the bottom. The order should match the header. |
1363 // ----------------------------------------------------------------------------- | 1359 // ----------------------------------------------------------------------------- |
1364 | 1360 |
1365 } // namespace switches | 1361 } // namespace switches |
OLD | NEW |