| 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 Media Router. | 442 // Enables Media Router. |
| 447 const char kEnableMediaRouter[] = "enable-media-router"; | 443 const char kEnableMediaRouter[] = "enable-media-router"; |
| 448 | 444 |
| 449 // Runs the Native Client inside the renderer process and enables GPU plugin | 445 // Runs the Native Client inside the renderer process and enables GPU plugin |
| (...skipping 941 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1391 | 1387 |
| 1392 // ----------------------------------------------------------------------------- | 1388 // ----------------------------------------------------------------------------- |
| 1393 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1389 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1394 // | 1390 // |
| 1395 // You were going to just dump your switches here, weren't you? Instead, please | 1391 // You were going to just dump your switches here, weren't you? Instead, please |
| 1396 // put them in alphabetical order above, or in order inside the appropriate | 1392 // put them in alphabetical order above, or in order inside the appropriate |
| 1397 // ifdef at the bottom. The order should match the header. | 1393 // ifdef at the bottom. The order should match the header. |
| 1398 // ----------------------------------------------------------------------------- | 1394 // ----------------------------------------------------------------------------- |
| 1399 | 1395 |
| 1400 } // namespace switches | 1396 } // namespace switches |
| OLD | NEW |