| 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 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 // Runs the Native Client inside the renderer process and enables GPU plugin | 462 // Runs the Native Client inside the renderer process and enables GPU plugin |
| 463 // (internally adds lEnableGpuPlugin to the command line). | 463 // (internally adds lEnableGpuPlugin to the command line). |
| 464 const char kEnableNaCl[] = "enable-nacl"; | 464 const char kEnableNaCl[] = "enable-nacl"; |
| 465 | 465 |
| 466 // Enables debugging via RSP over a socket. | 466 // Enables debugging via RSP over a socket. |
| 467 const char kEnableNaClDebug[] = "enable-nacl-debug"; | 467 const char kEnableNaClDebug[] = "enable-nacl-debug"; |
| 468 | 468 |
| 469 // Enables TLS origin bound certificate extension. | 469 // Enables TLS origin bound certificate extension. |
| 470 const char kEnableOriginBoundCerts[] = "enable-origin-bound-certs"; | 470 const char kEnableOriginBoundCerts[] = "enable-origin-bound-certs"; |
| 471 | 471 |
| 472 // This applies only when the process type is "service". Enables the | |
| 473 // Chromoting Host Process within the service process. | |
| 474 const char kEnableRemoting[] = "enable-remoting"; | |
| 475 | |
| 476 // Enable content settings based on host *and* plug-in. | 472 // Enable content settings based on host *and* plug-in. |
| 477 const char kEnableResourceContentSettings[] = | 473 const char kEnableResourceContentSettings[] = |
| 478 "enable-resource-content-settings"; | 474 "enable-resource-content-settings"; |
| 479 | 475 |
| 480 // Enable panels (always on-top docked pop-up windows). | 476 // Enable panels (always on-top docked pop-up windows). |
| 481 const char kEnablePanels[] = "enable-panels"; | 477 const char kEnablePanels[] = "enable-panels"; |
| 482 | 478 |
| 483 // Enable speculative TCP/IP preconnection. | 479 // Enable speculative TCP/IP preconnection. |
| 484 const char kEnablePreconnect[] = "enable-preconnect"; | 480 const char kEnablePreconnect[] = "enable-preconnect"; |
| 485 | 481 |
| (...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1238 | 1234 |
| 1239 // ----------------------------------------------------------------------------- | 1235 // ----------------------------------------------------------------------------- |
| 1240 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1236 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1241 // | 1237 // |
| 1242 // You were going to just dump your switches here, weren't you? Instead, | 1238 // You were going to just dump your switches here, weren't you? Instead, |
| 1243 // please put them in alphabetical order above, or in order inside the | 1239 // please put them in alphabetical order above, or in order inside the |
| 1244 // appropriate ifdef at the bottom. The order should match the header. | 1240 // appropriate ifdef at the bottom. The order should match the header. |
| 1245 // ----------------------------------------------------------------------------- | 1241 // ----------------------------------------------------------------------------- |
| 1246 | 1242 |
| 1247 } // namespace switches | 1243 } // namespace switches |
| OLD | NEW |