| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 // Allows reporting memory info (JS heap size) to page. | 509 // Allows reporting memory info (JS heap size) to page. |
| 510 const char kEnableMemoryInfo[] = "enable-memory-info"; | 510 const char kEnableMemoryInfo[] = "enable-memory-info"; |
| 511 | 511 |
| 512 // Runs the Native Client inside the renderer process and enables GPU plugin | 512 // Runs the Native Client inside the renderer process and enables GPU plugin |
| 513 // (internally adds lEnableGpuPlugin to the command line). | 513 // (internally adds lEnableGpuPlugin to the command line). |
| 514 const char kEnableNaCl[] = "enable-nacl"; | 514 const char kEnableNaCl[] = "enable-nacl"; |
| 515 | 515 |
| 516 // Enables debugging via RSP over a socket. | 516 // Enables debugging via RSP over a socket. |
| 517 const char kEnableNaClDebug[] = "enable-nacl-debug"; | 517 const char kEnableNaClDebug[] = "enable-nacl-debug"; |
| 518 | 518 |
| 519 // Enabled integrated bookmark features in the New Tab pane. | |
| 520 const char kEnableNTPBookmarkFeatures[] = "enable-ntp-bookmark-features"; | |
| 521 | |
| 522 // Enables advanced app capabilities. | 519 // Enables advanced app capabilities. |
| 523 const char kEnablePlatformApps[] = "enable-platform-apps"; | 520 const char kEnablePlatformApps[] = "enable-platform-apps"; |
| 524 | 521 |
| 525 // Enables content settings based on host *and* plug-in in the user | 522 // Enables content settings based on host *and* plug-in in the user |
| 526 // preferences. | 523 // preferences. |
| 527 const char kEnableResourceContentSettings[] = | 524 const char kEnableResourceContentSettings[] = |
| 528 "enable-resource-content-settings"; | 525 "enable-resource-content-settings"; |
| 529 | 526 |
| 530 // Enables speculative TCP/IP preconnection. | 527 // Enables speculative TCP/IP preconnection. |
| 531 const char kEnablePreconnect[] = "enable-preconnect"; | 528 const char kEnablePreconnect[] = "enable-preconnect"; |
| (...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1298 | 1295 |
| 1299 // ----------------------------------------------------------------------------- | 1296 // ----------------------------------------------------------------------------- |
| 1300 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1297 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1301 // | 1298 // |
| 1302 // You were going to just dump your switches here, weren't you? Instead, please | 1299 // You were going to just dump your switches here, weren't you? Instead, please |
| 1303 // put them in alphabetical order above, or in order inside the appropriate | 1300 // put them in alphabetical order above, or in order inside the appropriate |
| 1304 // ifdef at the bottom. The order should match the header. | 1301 // ifdef at the bottom. The order should match the header. |
| 1305 // ----------------------------------------------------------------------------- | 1302 // ----------------------------------------------------------------------------- |
| 1306 | 1303 |
| 1307 } // namespace switches | 1304 } // namespace switches |
| OLD | NEW |