| OLD | NEW |
| 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 | 368 |
| 369 // Enable gpu-accelerated 2d canvas. | 369 // Enable gpu-accelerated 2d canvas. |
| 370 const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas"; | 370 const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas"; |
| 371 | 371 |
| 372 // Enables WebKit accessibility within the renderer process. | 372 // Enables WebKit accessibility within the renderer process. |
| 373 const char kEnableAccessibility[] = "enable-accessibility"; | 373 const char kEnableAccessibility[] = "enable-accessibility"; |
| 374 | 374 |
| 375 // Enables AeroPeek for each tab. (This switch only works on Windows 7). | 375 // Enables AeroPeek for each tab. (This switch only works on Windows 7). |
| 376 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; | 376 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; |
| 377 | 377 |
| 378 // Enables the application section of the new tab page. |
| 379 const char kEnableAppLauncher[] = "enable-app-launcher"; |
| 380 |
| 378 // Enable the inclusion of non-standard ports when generating the Kerberos SPN | 381 // Enable the inclusion of non-standard ports when generating the Kerberos SPN |
| 379 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN | 382 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN |
| 380 // for more background. | 383 // for more background. |
| 381 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 384 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
| 382 | 385 |
| 383 // Enable background mode (background apps will keep chrome running in the | 386 // Enable background mode (background apps will keep chrome running in the |
| 384 // background and allow chrome to launch on startup). | 387 // background and allow chrome to launch on startup). |
| 385 const char kEnableBackgroundMode[] = "enable-background-mode"; | 388 const char kEnableBackgroundMode[] = "enable-background-mode"; |
| 386 | 389 |
| 387 // Enables the benchmarking extensions. | 390 // Enables the benchmarking extensions. |
| (...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1300 | 1303 |
| 1301 // ----------------------------------------------------------------------------- | 1304 // ----------------------------------------------------------------------------- |
| 1302 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1305 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1303 // | 1306 // |
| 1304 // You were going to just dump your switches here, weren't you? Instead, | 1307 // You were going to just dump your switches here, weren't you? Instead, |
| 1305 // please put them in alphabetical order above, or in order inside the | 1308 // please put them in alphabetical order above, or in order inside the |
| 1306 // appropriate ifdef at the bottom. The order should match the header. | 1309 // appropriate ifdef at the bottom. The order should match the header. |
| 1307 // ----------------------------------------------------------------------------- | 1310 // ----------------------------------------------------------------------------- |
| 1308 | 1311 |
| 1309 } // namespace switches | 1312 } // namespace switches |
| OLD | NEW |