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 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
916 | 916 |
917 // Controls whether profile data is periodically flushed to a file. Normally | 917 // Controls whether profile data is periodically flushed to a file. Normally |
918 // the data gets written on exit but cases exist where chrome doesn't exit | 918 // the data gets written on exit but cases exist where chrome doesn't exit |
919 // cleanly (especially when using single-process). A time in seconds can be | 919 // cleanly (especially when using single-process). A time in seconds can be |
920 // specified. | 920 // specified. |
921 const char kProfilingFlush[] = "profiling-flush"; | 921 const char kProfilingFlush[] = "profiling-flush"; |
922 | 922 |
923 // Specifies a custom URL for fetching NTP promo data. | 923 // Specifies a custom URL for fetching NTP promo data. |
924 const char kPromoServerURL[] = "promo-server-url"; | 924 const char kPromoServerURL[] = "promo-server-url"; |
925 | 925 |
926 // Enables the protector. | 926 // Disables the protector. |
927 const char kProtector[] = "protector"; | 927 const char kNoProtector[] = "no-protector"; |
928 | 928 |
929 // Forces proxy auto-detection. | 929 // Forces proxy auto-detection. |
930 const char kProxyAutoDetect[] = "proxy-auto-detect"; | 930 const char kProxyAutoDetect[] = "proxy-auto-detect"; |
931 | 931 |
932 // Specifies a list of hosts for whom we bypass proxy settings and use direct | 932 // Specifies a list of hosts for whom we bypass proxy settings and use direct |
933 // connections. Ignored if --proxy-auto-detect or --no-proxy-server are also | 933 // connections. Ignored if --proxy-auto-detect or --no-proxy-server are also |
934 // specified. This is a comma-separated list of bypass rules. See: | 934 // specified. This is a comma-separated list of bypass rules. See: |
935 // "net/proxy/proxy_bypass_rules.h" for the format of these rules. | 935 // "net/proxy/proxy_bypass_rules.h" for the format of these rules. |
936 const char kProxyBypassList[] = "proxy-bypass-list"; | 936 const char kProxyBypassList[] = "proxy-bypass-list"; |
937 | 937 |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1293 | 1293 |
1294 // ----------------------------------------------------------------------------- | 1294 // ----------------------------------------------------------------------------- |
1295 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1295 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1296 // | 1296 // |
1297 // You were going to just dump your switches here, weren't you? Instead, please | 1297 // You were going to just dump your switches here, weren't you? Instead, please |
1298 // put them in alphabetical order above, or in order inside the appropriate | 1298 // put them in alphabetical order above, or in order inside the appropriate |
1299 // ifdef at the bottom. The order should match the header. | 1299 // ifdef at the bottom. The order should match the header. |
1300 // ----------------------------------------------------------------------------- | 1300 // ----------------------------------------------------------------------------- |
1301 | 1301 |
1302 } // namespace switches | 1302 } // namespace switches |
OLD | NEW |