| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 | 410 |
| 411 // Runs plugins inside the renderer process | 411 // Runs plugins inside the renderer process |
| 412 const char kInProcessPlugins[] = "in-process-plugins"; | 412 const char kInProcessPlugins[] = "in-process-plugins"; |
| 413 | 413 |
| 414 // Causes the browser to launch directly in incognito mode. | 414 // Causes the browser to launch directly in incognito mode. |
| 415 const char kIncognito[] = "incognito"; | 415 const char kIncognito[] = "incognito"; |
| 416 | 416 |
| 417 // Runs the Native Client inside the renderer process. | 417 // Runs the Native Client inside the renderer process. |
| 418 const char kInternalNaCl[] = "internal-nacl"; | 418 const char kInternalNaCl[] = "internal-nacl"; |
| 419 | 419 |
| 420 // Uses internal plugin for displaying PDFs. |
| 421 const char kInternalPDF[] = "internal-pdf"; |
| 422 |
| 420 // Runs a trusted Pepper plugin inside the renderer process. | 423 // Runs a trusted Pepper plugin inside the renderer process. |
| 421 const char kInternalPepper[] = "internal-pepper"; | 424 const char kInternalPepper[] = "internal-pepper"; |
| 422 | 425 |
| 423 // Specifies the flags passed to JS engine | 426 // Specifies the flags passed to JS engine |
| 424 const char kJavaScriptFlags[] = "js-flags"; | 427 const char kJavaScriptFlags[] = "js-flags"; |
| 425 | 428 |
| 426 // Load an extension from the specified directory. | 429 // Load an extension from the specified directory. |
| 427 const char kLoadExtension[] = "load-extension"; | 430 const char kLoadExtension[] = "load-extension"; |
| 428 | 431 |
| 429 // Load an NPAPI plugin from the specified path. | 432 // Load an NPAPI plugin from the specified path. |
| (...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 868 | 871 |
| 869 // ----------------------------------------------------------------------------- | 872 // ----------------------------------------------------------------------------- |
| 870 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 873 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 871 // | 874 // |
| 872 // You were going to just dump your switches here, weren't you? Instead, | 875 // You were going to just dump your switches here, weren't you? Instead, |
| 873 // please put them in alphabetical order above, or in order inside the | 876 // please put them in alphabetical order above, or in order inside the |
| 874 // appropriate ifdef at the bottom. The order should match the header. | 877 // appropriate ifdef at the bottom. The order should match the header. |
| 875 // ----------------------------------------------------------------------------- | 878 // ----------------------------------------------------------------------------- |
| 876 | 879 |
| 877 } // namespace switches | 880 } // namespace switches |
| OLD | NEW |