| 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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 "enable-extension-activity-logging"; | 410 "enable-extension-activity-logging"; |
| 411 | 411 |
| 412 const char kEnableExtensionActivityLogTesting[] = | 412 const char kEnableExtensionActivityLogTesting[] = |
| 413 "enable-extension-activity-log-testing"; | 413 "enable-extension-activity-log-testing"; |
| 414 | 414 |
| 415 // Enable the fast unload controller, which speeds up tab/window close by | 415 // Enable the fast unload controller, which speeds up tab/window close by |
| 416 // running a tab's onunload js handler independently of the GUI - | 416 // running a tab's onunload js handler independently of the GUI - |
| 417 // crbug.com/142458 . | 417 // crbug.com/142458 . |
| 418 const char kEnableFastUnload[] = "enable-fast-unload"; | 418 const char kEnableFastUnload[] = "enable-fast-unload"; |
| 419 | 419 |
| 420 // Enable the experimental Ignition interpreter in V8. |
| 421 const char kEnableIgnition[] = "enable-ignition"; |
| 422 |
| 420 // Enables the Material Design version of chrome://extensions. | 423 // Enables the Material Design version of chrome://extensions. |
| 421 const char kEnableMaterialDesignExtensions[] = "enable-md-extensions"; | 424 const char kEnableMaterialDesignExtensions[] = "enable-md-extensions"; |
| 422 | 425 |
| 423 // Enables the Material Design policy page at chrome://md-policy. | 426 // Enables the Material Design policy page at chrome://md-policy. |
| 424 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; | 427 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; |
| 425 | 428 |
| 426 // Runs the Native Client inside the renderer process and enables GPU plugin | 429 // Runs the Native Client inside the renderer process and enables GPU plugin |
| 427 // (internally adds lEnableGpuPlugin to the command line). | 430 // (internally adds lEnableGpuPlugin to the command line). |
| 428 const char kEnableNaCl[] = "enable-nacl"; | 431 const char kEnableNaCl[] = "enable-nacl"; |
| 429 | 432 |
| (...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1360 | 1363 |
| 1361 // ----------------------------------------------------------------------------- | 1364 // ----------------------------------------------------------------------------- |
| 1362 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1365 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1363 // | 1366 // |
| 1364 // You were going to just dump your switches here, weren't you? Instead, please | 1367 // You were going to just dump your switches here, weren't you? Instead, please |
| 1365 // put them in alphabetical order above, or in order inside the appropriate | 1368 // put them in alphabetical order above, or in order inside the appropriate |
| 1366 // ifdef at the bottom. The order should match the header. | 1369 // ifdef at the bottom. The order should match the header. |
| 1367 // ----------------------------------------------------------------------------- | 1370 // ----------------------------------------------------------------------------- |
| 1368 | 1371 |
| 1369 } // namespace switches | 1372 } // namespace switches |
| OLD | NEW |