OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 // Enable the inclusion of non-standard ports when generating the Kerberos SPN | 285 // Enable the inclusion of non-standard ports when generating the Kerberos SPN |
286 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN | 286 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN |
287 // for more background. | 287 // for more background. |
288 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 288 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
289 | 289 |
290 // Enables the benchmarking extensions. | 290 // Enables the benchmarking extensions. |
291 const char kEnableBenchmarking[] = "enable-benchmarking"; | 291 const char kEnableBenchmarking[] = "enable-benchmarking"; |
292 | 292 |
293 // This applies only when the process type is "service". Enables the | 293 // This applies only when the process type is "service". Enables the |
294 // Chromoting Host Process within the service process. | 294 // Chromoting Host Process within the service process. |
295 const char kEnableChromoting[] = "enable-chromoting"; | 295 const char kEnableRemoting[] = "enable-remoting"; |
296 | 296 |
297 // Enable click-to-play for blocked plugins. | 297 // Enable click-to-play for blocked plugins. |
298 const char kEnableClickToPlay[] = "enable-click-to-play"; | 298 const char kEnableClickToPlay[] = "enable-click-to-play"; |
299 | 299 |
300 // This applies only when the process type is "service". Enables the | 300 // This applies only when the process type is "service". Enables the |
301 // Cloud Print Proxy component within the service process. | 301 // Cloud Print Proxy component within the service process. |
302 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 302 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
303 | 303 |
304 // Enables the Cloud Print dialog hosting code. | 304 // Enables the Cloud Print dialog hosting code. |
305 const char kEnableCloudPrint[] = "enable-cloud-print"; | 305 const char kEnableCloudPrint[] = "enable-cloud-print"; |
(...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1140 | 1140 |
1141 // ----------------------------------------------------------------------------- | 1141 // ----------------------------------------------------------------------------- |
1142 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1142 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1143 // | 1143 // |
1144 // You were going to just dump your switches here, weren't you? Instead, | 1144 // You were going to just dump your switches here, weren't you? Instead, |
1145 // please put them in alphabetical order above, or in order inside the | 1145 // please put them in alphabetical order above, or in order inside the |
1146 // appropriate ifdef at the bottom. The order should match the header. | 1146 // appropriate ifdef at the bottom. The order should match the header. |
1147 // ----------------------------------------------------------------------------- | 1147 // ----------------------------------------------------------------------------- |
1148 | 1148 |
1149 } // namespace switches | 1149 } // namespace switches |
OLD | NEW |