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 995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1006 // testing-related messages on IPC channel with the given ID. | 1006 // testing-related messages on IPC channel with the given ID. |
1007 const char kTestingChannelID[] = "testing-channel"; | 1007 const char kTestingChannelID[] = "testing-channel"; |
1008 | 1008 |
1009 // Experimental. Shows a dialog asking the user to try chrome. This flag | 1009 // Experimental. Shows a dialog asking the user to try chrome. This flag |
1010 // is to be used only by the upgrade process. | 1010 // is to be used only by the upgrade process. |
1011 const char kTryChromeAgain[] = "try-chrome-again"; | 1011 const char kTryChromeAgain[] = "try-chrome-again"; |
1012 | 1012 |
1013 // Runs un-installation steps that were done by chrome first-run. | 1013 // Runs un-installation steps that were done by chrome first-run. |
1014 const char kUninstall[] = "uninstall"; | 1014 const char kUninstall[] = "uninstall"; |
1015 | 1015 |
| 1016 // Use WebUI versions of dialogs when available (rather than platform native |
| 1017 // implementations). |
| 1018 const char kUseMoreWebUI[] = "use-more-webui"; |
| 1019 |
1016 // Use a pure Views implementation when available (rather rather than platform | 1020 // Use a pure Views implementation when available (rather rather than platform |
1017 // native implementation such as GTK). | 1021 // native implementation such as GTK). |
1018 const char kUsePureViews[] = "use-pure-views"; | 1022 const char kUsePureViews[] = "use-pure-views"; |
1019 | 1023 |
1020 // Use Spdy for the transport protocol instead of HTTP. | 1024 // Use Spdy for the transport protocol instead of HTTP. |
1021 // This is a temporary testing flag. | 1025 // This is a temporary testing flag. |
1022 const char kUseSpdy[] = "use-spdy"; | 1026 const char kUseSpdy[] = "use-spdy"; |
1023 | 1027 |
1024 // Ignore certificate related errors. | 1028 // Ignore certificate related errors. |
1025 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; | 1029 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1248 | 1252 |
1249 // ----------------------------------------------------------------------------- | 1253 // ----------------------------------------------------------------------------- |
1250 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1254 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1251 // | 1255 // |
1252 // You were going to just dump your switches here, weren't you? Instead, | 1256 // You were going to just dump your switches here, weren't you? Instead, |
1253 // please put them in alphabetical order above, or in order inside the | 1257 // please put them in alphabetical order above, or in order inside the |
1254 // appropriate ifdef at the bottom. The order should match the header. | 1258 // appropriate ifdef at the bottom. The order should match the header. |
1255 // ----------------------------------------------------------------------------- | 1259 // ----------------------------------------------------------------------------- |
1256 | 1260 |
1257 } // namespace switches | 1261 } // namespace switches |
OLD | NEW |