Chromium Code Reviews| 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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 556 // Enables panels (always on-top docked pop-up windows). | 556 // Enables panels (always on-top docked pop-up windows). |
| 557 const char kEnablePanels[] = "enable-panels"; | 557 const char kEnablePanels[] = "enable-panels"; |
| 558 | 558 |
| 559 // Enables password generation when we detect that the user is going through | 559 // Enables password generation when we detect that the user is going through |
| 560 // account creation. | 560 // account creation. |
| 561 const char kEnablePasswordGeneration[] = "enable-password-generation"; | 561 const char kEnablePasswordGeneration[] = "enable-password-generation"; |
| 562 | 562 |
| 563 // Enables advanced app capabilities. | 563 // Enables advanced app capabilities. |
| 564 const char kEnablePlatformApps[] = "enable-platform-apps"; | 564 const char kEnablePlatformApps[] = "enable-platform-apps"; |
| 565 | 565 |
| 566 // Enables clean exit of the renderer process via calling exit(); | |
|
Nirnimesh
2012/04/06 01:06:41
nit: end with period, not ;
| |
| 567 const char kEnableRendererCleanExit[] = "renderer-clean-exit"; | |
| 568 | |
| 566 // Enables content settings based on host *and* plug-in in the user | 569 // Enables content settings based on host *and* plug-in in the user |
| 567 // preferences. | 570 // preferences. |
| 568 const char kEnableResourceContentSettings[] = | 571 const char kEnableResourceContentSettings[] = |
| 569 "enable-resource-content-settings"; | 572 "enable-resource-content-settings"; |
| 570 | 573 |
| 571 // Enables the installation and usage of Portable Native Client. | 574 // Enables the installation and usage of Portable Native Client. |
| 572 const char kEnablePnacl[] = "enable-pnacl"; | 575 const char kEnablePnacl[] = "enable-pnacl"; |
| 573 | 576 |
| 574 // Enables tracking of tasks in profiler for viewing via about:profiler. | 577 // Enables tracking of tasks in profiler for viewing via about:profiler. |
| 575 // To predominantly disable tracking (profiling), use the command line switch: | 578 // To predominantly disable tracking (profiling), use the command line switch: |
| (...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1373 | 1376 |
| 1374 // ----------------------------------------------------------------------------- | 1377 // ----------------------------------------------------------------------------- |
| 1375 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1378 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1376 // | 1379 // |
| 1377 // You were going to just dump your switches here, weren't you? Instead, please | 1380 // You were going to just dump your switches here, weren't you? Instead, please |
| 1378 // put them in alphabetical order above, or in order inside the appropriate | 1381 // put them in alphabetical order above, or in order inside the appropriate |
| 1379 // ifdef at the bottom. The order should match the header. | 1382 // ifdef at the bottom. The order should match the header. |
| 1380 // ----------------------------------------------------------------------------- | 1383 // ----------------------------------------------------------------------------- |
| 1381 | 1384 |
| 1382 } // namespace switches | 1385 } // namespace switches |
| OLD | NEW |