| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 | 306 |
| 307 // Runs plugins inside the renderer process | 307 // Runs plugins inside the renderer process |
| 308 const char kInProcessPlugins[] = "in-process-plugins"; | 308 const char kInProcessPlugins[] = "in-process-plugins"; |
| 309 | 309 |
| 310 // Causes the browser to launch directly in incognito mode. | 310 // Causes the browser to launch directly in incognito mode. |
| 311 const char kIncognito[] = "incognito"; | 311 const char kIncognito[] = "incognito"; |
| 312 | 312 |
| 313 // Runs the Native Client inside the renderer process. | 313 // Runs the Native Client inside the renderer process. |
| 314 const char kInternalNaCl[] = "internal-nacl"; | 314 const char kInternalNaCl[] = "internal-nacl"; |
| 315 | 315 |
| 316 // Runs a trusted Pepper plugin inside the renderer process. |
| 317 const char kInternalPepper[] = "internal-pepper"; |
| 318 |
| 316 // Specifies the flags passed to JS engine | 319 // Specifies the flags passed to JS engine |
| 317 const char kJavaScriptFlags[] = "js-flags"; | 320 const char kJavaScriptFlags[] = "js-flags"; |
| 318 | 321 |
| 319 // Load an extension from the specified directory. | 322 // Load an extension from the specified directory. |
| 320 const char kLoadExtension[] = "load-extension"; | 323 const char kLoadExtension[] = "load-extension"; |
| 321 | 324 |
| 322 // Load an NPAPI plugin from the specified path. | 325 // Load an NPAPI plugin from the specified path. |
| 323 const char kLoadPlugin[] = "load-plugin"; | 326 const char kLoadPlugin[] = "load-plugin"; |
| 324 | 327 |
| 325 // Will filter log messages to show only the messages that are prefixed | 328 // Will filter log messages to show only the messages that are prefixed |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 | 713 |
| 711 // ----------------------------------------------------------------------------- | 714 // ----------------------------------------------------------------------------- |
| 712 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 715 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 713 // | 716 // |
| 714 // You were going to just dump your switches here, weren't you? Instead, | 717 // You were going to just dump your switches here, weren't you? Instead, |
| 715 // please put them in alphabetical order above, or in order inside the | 718 // please put them in alphabetical order above, or in order inside the |
| 716 // appropriate ifdef at the bottom. The order should match the header. | 719 // appropriate ifdef at the bottom. The order should match the header. |
| 717 // ----------------------------------------------------------------------------- | 720 // ----------------------------------------------------------------------------- |
| 718 | 721 |
| 719 } // namespace switches | 722 } // namespace switches |
| OLD | NEW |