| 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 659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 670 | 670 |
| 671 // Causes the browser to launch directly in incognito mode. | 671 // Causes the browser to launch directly in incognito mode. |
| 672 const char kIncognito[] = "incognito"; | 672 const char kIncognito[] = "incognito"; |
| 673 | 673 |
| 674 // Runs the Native Client inside the renderer process. | 674 // Runs the Native Client inside the renderer process. |
| 675 const char kInternalNaCl[] = "internal-nacl"; | 675 const char kInternalNaCl[] = "internal-nacl"; |
| 676 | 676 |
| 677 // Runs a trusted Pepper plugin inside the renderer process. | 677 // Runs a trusted Pepper plugin inside the renderer process. |
| 678 const char kInternalPepper[] = "internal-pepper"; | 678 const char kInternalPepper[] = "internal-pepper"; |
| 679 | 679 |
| 680 // The following flag allows users who can reproduce crbug/35198 | |
| 681 // to enable extra logging. It will be removed once the issue is fixed. | |
| 682 const char kIssue35198ExtraLogging[] = "issue35198-logging"; | |
| 683 | |
| 684 // Specifies the flags passed to JS engine | 680 // Specifies the flags passed to JS engine |
| 685 const char kJavaScriptFlags[] = "js-flags"; | 681 const char kJavaScriptFlags[] = "js-flags"; |
| 686 | 682 |
| 687 // Used for testing - keeps browser alive after last browser window closes. | 683 // Used for testing - keeps browser alive after last browser window closes. |
| 688 const char kKeepAliveForTest[] = "keep-alive-for-test"; | 684 const char kKeepAliveForTest[] = "keep-alive-for-test"; |
| 689 | 685 |
| 690 // Load an extension from the specified directory. | 686 // Load an extension from the specified directory. |
| 691 const char kLoadExtension[] = "load-extension"; | 687 const char kLoadExtension[] = "load-extension"; |
| 692 | 688 |
| 693 // Load an NPAPI plugin from the specified path. | 689 // Load an NPAPI plugin from the specified path. |
| (...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1253 | 1249 |
| 1254 // ----------------------------------------------------------------------------- | 1250 // ----------------------------------------------------------------------------- |
| 1255 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1251 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1256 // | 1252 // |
| 1257 // You were going to just dump your switches here, weren't you? Instead, | 1253 // You were going to just dump your switches here, weren't you? Instead, |
| 1258 // please put them in alphabetical order above, or in order inside the | 1254 // please put them in alphabetical order above, or in order inside the |
| 1259 // appropriate ifdef at the bottom. The order should match the header. | 1255 // appropriate ifdef at the bottom. The order should match the header. |
| 1260 // ----------------------------------------------------------------------------- | 1256 // ----------------------------------------------------------------------------- |
| 1261 | 1257 |
| 1262 } // namespace switches | 1258 } // namespace switches |
| OLD | NEW |