| 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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 "enable-extension-activity-logging"; | 426 "enable-extension-activity-logging"; |
| 427 | 427 |
| 428 const char kEnableExtensionActivityLogTesting[] = | 428 const char kEnableExtensionActivityLogTesting[] = |
| 429 "enable-extension-activity-log-testing"; | 429 "enable-extension-activity-log-testing"; |
| 430 | 430 |
| 431 // Enable the fast unload controller, which speeds up tab/window close by | 431 // Enable the fast unload controller, which speeds up tab/window close by |
| 432 // running a tab's onunload js handler independently of the GUI - | 432 // running a tab's onunload js handler independently of the GUI - |
| 433 // crbug.com/142458 . | 433 // crbug.com/142458 . |
| 434 const char kEnableFastUnload[] = "enable-fast-unload"; | 434 const char kEnableFastUnload[] = "enable-fast-unload"; |
| 435 | 435 |
| 436 // Enables support for the QUIC protocol for insecure schemes (http://). | |
| 437 // This is a temporary testing flag. | |
| 438 const char kEnableInsecureQuic[] = "enable-insecure-quic"; | |
| 439 | |
| 440 // Enables the Material Design version of chrome://downloads. | 436 // Enables the Material Design version of chrome://downloads. |
| 441 const char kEnableMaterialDesignDownloads[] = "enable-md-downloads"; | 437 const char kEnableMaterialDesignDownloads[] = "enable-md-downloads"; |
| 442 | 438 |
| 443 // Enables the Material Design version of chrome://extensions. | 439 // Enables the Material Design version of chrome://extensions. |
| 444 const char kEnableMaterialDesignExtensions[] = "enable-md-extensions"; | 440 const char kEnableMaterialDesignExtensions[] = "enable-md-extensions"; |
| 445 | 441 |
| 446 // Enables the Material Design policy page at chrome://md-policy. | 442 // Enables the Material Design policy page at chrome://md-policy. |
| 447 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; | 443 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; |
| 448 | 444 |
| 449 // Enables Media Router. | 445 // Enables Media Router. |
| (...skipping 961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1411 | 1407 |
| 1412 // ----------------------------------------------------------------------------- | 1408 // ----------------------------------------------------------------------------- |
| 1413 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1409 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1414 // | 1410 // |
| 1415 // You were going to just dump your switches here, weren't you? Instead, please | 1411 // You were going to just dump your switches here, weren't you? Instead, please |
| 1416 // put them in alphabetical order above, or in order inside the appropriate | 1412 // put them in alphabetical order above, or in order inside the appropriate |
| 1417 // ifdef at the bottom. The order should match the header. | 1413 // ifdef at the bottom. The order should match the header. |
| 1418 // ----------------------------------------------------------------------------- | 1414 // ----------------------------------------------------------------------------- |
| 1419 | 1415 |
| 1420 } // namespace switches | 1416 } // namespace switches |
| OLD | NEW |