| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 // Enables the Material Design feedback form. | 424 // Enables the Material Design feedback form. |
| 425 const char kEnableMaterialDesignFeedback[] = "enable-md-feedback"; | 425 const char kEnableMaterialDesignFeedback[] = "enable-md-feedback"; |
| 426 | 426 |
| 427 // Enables the Material Design policy page at chrome://md-policy. | 427 // Enables the Material Design policy page at chrome://md-policy. |
| 428 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; | 428 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; |
| 429 | 429 |
| 430 // Runs the Native Client inside the renderer process and enables GPU plugin | 430 // Runs the Native Client inside the renderer process and enables GPU plugin |
| 431 // (internally adds lEnableGpuPlugin to the command line). | 431 // (internally adds lEnableGpuPlugin to the command line). |
| 432 const char kEnableNaCl[] = "enable-nacl"; | 432 const char kEnableNaCl[] = "enable-nacl"; |
| 433 | 433 |
| 434 #if defined(OS_CHROMEOS) |
| 435 // Enables native cups integration |
| 436 const char kEnableNativeCups[] = "enable-native-cups"; |
| 437 #endif // defined(OS_CHROMEOS) |
| 438 |
| 434 // Enables the use of native notifications instead of using the Chrome based | 439 // Enables the use of native notifications instead of using the Chrome based |
| 435 // ones. | 440 // ones. |
| 436 const char kEnableNativeNotifications[] = "enable-native-notifications"; | 441 const char kEnableNativeNotifications[] = "enable-native-notifications"; |
| 437 | 442 |
| 438 // Enables tracing for each navigation. It will attempt to trace each navigation | 443 // Enables tracing for each navigation. It will attempt to trace each navigation |
| 439 // for 10s, until the buffer is full, or until the next navigation. | 444 // for 10s, until the buffer is full, or until the next navigation. |
| 440 // It only works if a URL was provided by --trace-upload-url. | 445 // It only works if a URL was provided by --trace-upload-url. |
| 441 const char kEnableNavigationTracing[] = "enable-navigation-tracing"; | 446 const char kEnableNavigationTracing[] = "enable-navigation-tracing"; |
| 442 | 447 |
| 443 // Enables the network-related benchmarking extensions. | 448 // Enables the network-related benchmarking extensions. |
| (...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1344 | 1349 |
| 1345 // ----------------------------------------------------------------------------- | 1350 // ----------------------------------------------------------------------------- |
| 1346 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1351 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1347 // | 1352 // |
| 1348 // You were going to just dump your switches here, weren't you? Instead, please | 1353 // You were going to just dump your switches here, weren't you? Instead, please |
| 1349 // put them in alphabetical order above, or in order inside the appropriate | 1354 // put them in alphabetical order above, or in order inside the appropriate |
| 1350 // ifdef at the bottom. The order should match the header. | 1355 // ifdef at the bottom. The order should match the header. |
| 1351 // ----------------------------------------------------------------------------- | 1356 // ----------------------------------------------------------------------------- |
| 1352 | 1357 |
| 1353 } // namespace switches | 1358 } // namespace switches |
| OLD | NEW |