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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
559 | 559 |
560 // Force the installer tests to run, regardless of the current platform. | 560 // Force the installer tests to run, regardless of the current platform. |
561 const char kInstallerTestForce[] = "force"; | 561 const char kInstallerTestForce[] = "force"; |
562 | 562 |
563 // Runs the Native Client inside the renderer process. | 563 // Runs the Native Client inside the renderer process. |
564 const char kInternalNaCl[] = "internal-nacl"; | 564 const char kInternalNaCl[] = "internal-nacl"; |
565 | 565 |
566 // Runs a trusted Pepper plugin inside the renderer process. | 566 // Runs a trusted Pepper plugin inside the renderer process. |
567 const char kInternalPepper[] = "internal-pepper"; | 567 const char kInternalPepper[] = "internal-pepper"; |
568 | 568 |
569 // The following flags allow users who can reproduce crbug/35198 | 569 // The following flag allows users who can reproduce crbug/35198 |
570 // to enable extra logging and behaviors. They will be removed once | 570 // to enable extra logging. It will be removed once the issue is fixed. |
571 // the issue is fixed. | |
572 const char kIssue35198CrxDirBrowser[] = "issue35198-crxdir-browser"; | |
573 const char kIssue35198ExtraLogging[] = "issue35198-logging"; | 571 const char kIssue35198ExtraLogging[] = "issue35198-logging"; |
574 const char kIssue35198Permission[] = "issue35198-permission"; | |
575 | 572 |
576 // Specifies the flags passed to JS engine | 573 // Specifies the flags passed to JS engine |
577 const char kJavaScriptFlags[] = "js-flags"; | 574 const char kJavaScriptFlags[] = "js-flags"; |
578 | 575 |
579 // Used for testing - keeps browser alive after last browser window closes. | 576 // Used for testing - keeps browser alive after last browser window closes. |
580 const char kKeepAliveForTest[] = "keep-alive-for-test"; | 577 const char kKeepAliveForTest[] = "keep-alive-for-test"; |
581 | 578 |
582 // Load an extension from the specified directory. | 579 // Load an extension from the specified directory. |
583 const char kLoadExtension[] = "load-extension"; | 580 const char kLoadExtension[] = "load-extension"; |
584 | 581 |
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1130 | 1127 |
1131 // ----------------------------------------------------------------------------- | 1128 // ----------------------------------------------------------------------------- |
1132 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1129 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1133 // | 1130 // |
1134 // You were going to just dump your switches here, weren't you? Instead, | 1131 // You were going to just dump your switches here, weren't you? Instead, |
1135 // please put them in alphabetical order above, or in order inside the | 1132 // please put them in alphabetical order above, or in order inside the |
1136 // appropriate ifdef at the bottom. The order should match the header. | 1133 // appropriate ifdef at the bottom. The order should match the header. |
1137 // ----------------------------------------------------------------------------- | 1134 // ----------------------------------------------------------------------------- |
1138 | 1135 |
1139 } // namespace switches | 1136 } // namespace switches |
OLD | NEW |