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