| 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 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 // Enables the Material Design version of chrome://history. | 430 // Enables the Material Design version of chrome://history. |
| 431 const char kEnableMaterialDesignHistory[] = "enable-md-history"; | 431 const char kEnableMaterialDesignHistory[] = "enable-md-history"; |
| 432 | 432 |
| 433 // Enables the Material Design policy page at chrome://md-policy. | 433 // Enables the Material Design policy page at chrome://md-policy. |
| 434 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; | 434 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; |
| 435 | 435 |
| 436 // Runs the Native Client inside the renderer process and enables GPU plugin | 436 // Runs the Native Client inside the renderer process and enables GPU plugin |
| 437 // (internally adds lEnableGpuPlugin to the command line). | 437 // (internally adds lEnableGpuPlugin to the command line). |
| 438 const char kEnableNaCl[] = "enable-nacl"; | 438 const char kEnableNaCl[] = "enable-nacl"; |
| 439 | 439 |
| 440 // Enables the use of native notifications instead of |
| 441 // using the chrome based ones. |
| 442 const char kEnableNativeNotifications[] = "enable-native-notifications"; |
| 443 |
| 440 // Enables tracing for each navigation. It will attempt to trace each navigation | 444 // Enables tracing for each navigation. It will attempt to trace each navigation |
| 441 // for 10s, until the buffer is full, or until the next navigation. | 445 // for 10s, until the buffer is full, or until the next navigation. |
| 442 // It only works if a URL was provided by --trace-upload-url. | 446 // It only works if a URL was provided by --trace-upload-url. |
| 443 const char kEnableNavigationTracing[] = "enable-navigation-tracing"; | 447 const char kEnableNavigationTracing[] = "enable-navigation-tracing"; |
| 444 | 448 |
| 445 // Enables the network-related benchmarking extensions. | 449 // Enables the network-related benchmarking extensions. |
| 446 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; | 450 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; |
| 447 | 451 |
| 448 // Enables the new bookmark app system. | 452 // Enables the new bookmark app system. |
| 449 const char kEnableNewBookmarkApps[] = "enable-new-bookmark-apps"; | 453 const char kEnableNewBookmarkApps[] = "enable-new-bookmark-apps"; |
| (...skipping 947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1397 | 1401 |
| 1398 // ----------------------------------------------------------------------------- | 1402 // ----------------------------------------------------------------------------- |
| 1399 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1403 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1400 // | 1404 // |
| 1401 // You were going to just dump your switches here, weren't you? Instead, please | 1405 // You were going to just dump your switches here, weren't you? Instead, please |
| 1402 // put them in alphabetical order above, or in order inside the appropriate | 1406 // put them in alphabetical order above, or in order inside the appropriate |
| 1403 // ifdef at the bottom. The order should match the header. | 1407 // ifdef at the bottom. The order should match the header. |
| 1404 // ----------------------------------------------------------------------------- | 1408 // ----------------------------------------------------------------------------- |
| 1405 | 1409 |
| 1406 } // namespace switches | 1410 } // namespace switches |
| OLD | NEW |