| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 // Specifies if the |DOMAutomationController| needs to be bound in the | 358 // Specifies if the |DOMAutomationController| needs to be bound in the |
| 359 // renderer. This binding happens on per-frame basis and hence can potentially | 359 // renderer. This binding happens on per-frame basis and hence can potentially |
| 360 // be a performance bottleneck. One should only enable it when automating | 360 // be a performance bottleneck. One should only enable it when automating |
| 361 // dom based tests. | 361 // dom based tests. |
| 362 // Also enables sending/receiving renderer automation messages through the | 362 // Also enables sending/receiving renderer automation messages through the |
| 363 // |AutomationRenderViewHelper|. | 363 // |AutomationRenderViewHelper|. |
| 364 // TODO(kkania): Rename this to enable-renderer-automation after moving the | 364 // TODO(kkania): Rename this to enable-renderer-automation after moving the |
| 365 // |DOMAutomationController| to the |AutomationRenderViewHelper|. | 365 // |DOMAutomationController| to the |AutomationRenderViewHelper|. |
| 366 const char kDomAutomationController[] = "dom-automation"; | 366 const char kDomAutomationController[] = "dom-automation"; |
| 367 | 367 |
| 368 // Replaces the download shelf with a new experimental UI. |
| 369 const char kDownloadsNewUI[] = "downloads-new-ui"; |
| 370 |
| 368 // Dump any accumualted histograms to the log when browser terminates (requires | 371 // Dump any accumualted histograms to the log when browser terminates (requires |
| 369 // logging to be enabled to really do anything). Used by developers and test | 372 // logging to be enabled to really do anything). Used by developers and test |
| 370 // scripts. | 373 // scripts. |
| 371 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; | 374 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; |
| 372 | 375 |
| 373 // Enables AeroPeek for each tab. (This switch only works on Windows 7). | 376 // Enables AeroPeek for each tab. (This switch only works on Windows 7). |
| 374 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; | 377 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; |
| 375 | 378 |
| 376 // Enable the inclusion of non-standard ports when generating the Kerberos SPN | 379 // Enable the inclusion of non-standard ports when generating the Kerberos SPN |
| 377 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN | 380 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN |
| (...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1231 | 1234 |
| 1232 // ----------------------------------------------------------------------------- | 1235 // ----------------------------------------------------------------------------- |
| 1233 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1236 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1234 // | 1237 // |
| 1235 // You were going to just dump your switches here, weren't you? Instead, | 1238 // You were going to just dump your switches here, weren't you? Instead, |
| 1236 // please put them in alphabetical order above, or in order inside the | 1239 // please put them in alphabetical order above, or in order inside the |
| 1237 // appropriate ifdef at the bottom. The order should match the header. | 1240 // appropriate ifdef at the bottom. The order should match the header. |
| 1238 // ----------------------------------------------------------------------------- | 1241 // ----------------------------------------------------------------------------- |
| 1239 | 1242 |
| 1240 } // namespace switches | 1243 } // namespace switches |
| OLD | NEW |