| 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 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 | 489 |
| 490 // Runs WebGL inside the renderer process. | 490 // Runs WebGL inside the renderer process. |
| 491 const char kInProcessWebGL[] = "in-process-webgl"; | 491 const char kInProcessWebGL[] = "in-process-webgl"; |
| 492 | 492 |
| 493 // Causes the browser to launch directly in incognito mode. | 493 // Causes the browser to launch directly in incognito mode. |
| 494 const char kIncognito[] = "incognito"; | 494 const char kIncognito[] = "incognito"; |
| 495 | 495 |
| 496 // Runs the Native Client inside the renderer process. | 496 // Runs the Native Client inside the renderer process. |
| 497 const char kInternalNaCl[] = "internal-nacl"; | 497 const char kInternalNaCl[] = "internal-nacl"; |
| 498 | 498 |
| 499 // Uses internal plugin for displaying PDFs. | |
| 500 const char kInternalPDF[] = "internal-pdf"; | |
| 501 | |
| 502 // Runs a trusted Pepper plugin inside the renderer process. | 499 // Runs a trusted Pepper plugin inside the renderer process. |
| 503 const char kInternalPepper[] = "internal-pepper"; | 500 const char kInternalPepper[] = "internal-pepper"; |
| 504 | 501 |
| 505 // Specifies the flags passed to JS engine | 502 // Specifies the flags passed to JS engine |
| 506 const char kJavaScriptFlags[] = "js-flags"; | 503 const char kJavaScriptFlags[] = "js-flags"; |
| 507 | 504 |
| 508 // Load an extension from the specified directory. | 505 // Load an extension from the specified directory. |
| 509 const char kLoadExtension[] = "load-extension"; | 506 const char kLoadExtension[] = "load-extension"; |
| 510 | 507 |
| 511 // Load an NPAPI plugin from the specified path. | 508 // Load an NPAPI plugin from the specified path. |
| (...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 978 | 975 |
| 979 // ----------------------------------------------------------------------------- | 976 // ----------------------------------------------------------------------------- |
| 980 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 977 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 981 // | 978 // |
| 982 // You were going to just dump your switches here, weren't you? Instead, | 979 // You were going to just dump your switches here, weren't you? Instead, |
| 983 // please put them in alphabetical order above, or in order inside the | 980 // please put them in alphabetical order above, or in order inside the |
| 984 // appropriate ifdef at the bottom. The order should match the header. | 981 // appropriate ifdef at the bottom. The order should match the header. |
| 985 // ----------------------------------------------------------------------------- | 982 // ----------------------------------------------------------------------------- |
| 986 | 983 |
| 987 } // namespace switches | 984 } // namespace switches |
| OLD | NEW |