| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1060 // Runs the security test for the NaCl loader sandbox. | 1060 // Runs the security test for the NaCl loader sandbox. |
| 1061 const char kTestNaClSandbox[] = "test-nacl-sandbox"; | 1061 const char kTestNaClSandbox[] = "test-nacl-sandbox"; |
| 1062 | 1062 |
| 1063 // Type of the current test harness ("browser" or "ui"). | 1063 // Type of the current test harness ("browser" or "ui"). |
| 1064 const char kTestType[] = "test-type"; | 1064 const char kTestType[] = "test-type"; |
| 1065 | 1065 |
| 1066 // Tells the app to listen for and broadcast testing-related messages on IPC | 1066 // Tells the app to listen for and broadcast testing-related messages on IPC |
| 1067 // channel with the given ID. | 1067 // channel with the given ID. |
| 1068 const char kTestingChannelID[] = "testing-channel"; | 1068 const char kTestingChannelID[] = "testing-channel"; |
| 1069 | 1069 |
| 1070 // Enables UI changes that make it easier to use with a touchscreen. |
| 1071 const char kTouchOptimizedUI[] = "touch-optimized-ui"; |
| 1072 |
| 1070 // Experimental. Shows a dialog asking the user to try chrome. This flag is to | 1073 // Experimental. Shows a dialog asking the user to try chrome. This flag is to |
| 1071 // be used only by the upgrade process. | 1074 // be used only by the upgrade process. |
| 1072 const char kTryChromeAgain[] = "try-chrome-again"; | 1075 const char kTryChromeAgain[] = "try-chrome-again"; |
| 1073 | 1076 |
| 1074 // Runs un-installation steps that were done by chrome first-run. | 1077 // Runs un-installation steps that were done by chrome first-run. |
| 1075 const char kUninstall[] = "uninstall"; | 1078 const char kUninstall[] = "uninstall"; |
| 1076 | 1079 |
| 1077 // Uses WebUI versions of dialogs when available (rather than platform-native | 1080 // Uses WebUI versions of dialogs when available (rather than platform-native |
| 1078 // implementations). | 1081 // implementations). |
| 1079 const char kUseMoreWebUI[] = "use-more-webui"; | 1082 const char kUseMoreWebUI[] = "use-more-webui"; |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1297 | 1300 |
| 1298 // ----------------------------------------------------------------------------- | 1301 // ----------------------------------------------------------------------------- |
| 1299 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1302 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1300 // | 1303 // |
| 1301 // You were going to just dump your switches here, weren't you? Instead, please | 1304 // You were going to just dump your switches here, weren't you? Instead, please |
| 1302 // put them in alphabetical order above, or in order inside the appropriate | 1305 // put them in alphabetical order above, or in order inside the appropriate |
| 1303 // ifdef at the bottom. The order should match the header. | 1306 // ifdef at the bottom. The order should match the header. |
| 1304 // ----------------------------------------------------------------------------- | 1307 // ----------------------------------------------------------------------------- |
| 1305 | 1308 |
| 1306 } // namespace switches | 1309 } // namespace switches |
| OLD | NEW |