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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 // for more background. | 279 // for more background. |
280 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 280 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
281 | 281 |
282 // Enables the benchmarking extensions. | 282 // Enables the benchmarking extensions. |
283 const char kEnableBenchmarking[] = "enable-benchmarking"; | 283 const char kEnableBenchmarking[] = "enable-benchmarking"; |
284 | 284 |
285 // This applies only when the process type is "service". Enables the | 285 // This applies only when the process type is "service". Enables the |
286 // Chromoting Host Process within the service process. | 286 // Chromoting Host Process within the service process. |
287 const char kEnableChromoting[] = "enable-chromoting"; | 287 const char kEnableChromoting[] = "enable-chromoting"; |
288 | 288 |
| 289 // Enable click-to-play for blocked plugins. |
| 290 const char kEnableClickToPlay[] = "enable-click-to-play"; |
| 291 |
289 // This applies only when the process type is "service". Enables the | 292 // This applies only when the process type is "service". Enables the |
290 // Cloud Print Proxy component within the service process. | 293 // Cloud Print Proxy component within the service process. |
291 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 294 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
292 | 295 |
293 // Enables the Cloud Print dialog hosting code. | 296 // Enables the Cloud Print dialog hosting code. |
294 const char kEnableCloudPrint[] = "enable-cloud-print"; | 297 const char kEnableCloudPrint[] = "enable-cloud-print"; |
295 | 298 |
296 // Enables device orientation events. | 299 // Enables device orientation events. |
297 const char kEnableDeviceOrientation[] = "enable-device-orientation"; | 300 const char kEnableDeviceOrientation[] = "enable-device-orientation"; |
298 | 301 |
(...skipping 831 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1130 | 1133 |
1131 // ----------------------------------------------------------------------------- | 1134 // ----------------------------------------------------------------------------- |
1132 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1135 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1133 // | 1136 // |
1134 // You were going to just dump your switches here, weren't you? Instead, | 1137 // You were going to just dump your switches here, weren't you? Instead, |
1135 // please put them in alphabetical order above, or in order inside the | 1138 // please put them in alphabetical order above, or in order inside the |
1136 // appropriate ifdef at the bottom. The order should match the header. | 1139 // appropriate ifdef at the bottom. The order should match the header. |
1137 // ----------------------------------------------------------------------------- | 1140 // ----------------------------------------------------------------------------- |
1138 | 1141 |
1139 } // namespace switches | 1142 } // namespace switches |
OLD | NEW |