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 981 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
992 // testing-related messages on IPC channel with the given ID. | 992 // testing-related messages on IPC channel with the given ID. |
993 const char kTestingChannelID[] = "testing-channel"; | 993 const char kTestingChannelID[] = "testing-channel"; |
994 | 994 |
995 // Experimental. Shows a dialog asking the user to try chrome. This flag | 995 // Experimental. Shows a dialog asking the user to try chrome. This flag |
996 // is to be used only by the upgrade process. | 996 // is to be used only by the upgrade process. |
997 const char kTryChromeAgain[] = "try-chrome-again"; | 997 const char kTryChromeAgain[] = "try-chrome-again"; |
998 | 998 |
999 // Runs un-installation steps that were done by chrome first-run. | 999 // Runs un-installation steps that were done by chrome first-run. |
1000 const char kUninstall[] = "uninstall"; | 1000 const char kUninstall[] = "uninstall"; |
1001 | 1001 |
| 1002 // Use WebUI versions of dialogs when available (rather than platform native |
| 1003 // implementations). |
| 1004 const char kUseMoreWebUI[] = "use-more-webui"; |
| 1005 |
1002 // Use a pure Views implementation when available (rather rather than platform | 1006 // Use a pure Views implementation when available (rather rather than platform |
1003 // native implementation such as GTK). | 1007 // native implementation such as GTK). |
1004 const char kUsePureViews[] = "use-pure-views"; | 1008 const char kUsePureViews[] = "use-pure-views"; |
1005 | 1009 |
1006 // Use Spdy for the transport protocol instead of HTTP. | 1010 // Use Spdy for the transport protocol instead of HTTP. |
1007 // This is a temporary testing flag. | 1011 // This is a temporary testing flag. |
1008 const char kUseSpdy[] = "use-spdy"; | 1012 const char kUseSpdy[] = "use-spdy"; |
1009 | 1013 |
1010 // Ignore certificate related errors. | 1014 // Ignore certificate related errors. |
1011 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; | 1015 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1228 | 1232 |
1229 // ----------------------------------------------------------------------------- | 1233 // ----------------------------------------------------------------------------- |
1230 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1234 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1231 // | 1235 // |
1232 // You were going to just dump your switches here, weren't you? Instead, | 1236 // You were going to just dump your switches here, weren't you? Instead, |
1233 // please put them in alphabetical order above, or in order inside the | 1237 // please put them in alphabetical order above, or in order inside the |
1234 // appropriate ifdef at the bottom. The order should match the header. | 1238 // appropriate ifdef at the bottom. The order should match the header. |
1235 // ----------------------------------------------------------------------------- | 1239 // ----------------------------------------------------------------------------- |
1236 | 1240 |
1237 } // namespace switches | 1241 } // namespace switches |
OLD | NEW |