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