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 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 // Enables the Material Design version of chrome://history. | 429 // Enables the Material Design version of chrome://history. |
430 const char kEnableMaterialDesignHistory[] = "enable-md-history"; | 430 const char kEnableMaterialDesignHistory[] = "enable-md-history"; |
431 | 431 |
432 // Enables the Material Design policy page at chrome://md-policy. | 432 // Enables the Material Design policy page at chrome://md-policy. |
433 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; | 433 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; |
434 | 434 |
435 // Runs the Native Client inside the renderer process and enables GPU plugin | 435 // Runs the Native Client inside the renderer process and enables GPU plugin |
436 // (internally adds lEnableGpuPlugin to the command line). | 436 // (internally adds lEnableGpuPlugin to the command line). |
437 const char kEnableNaCl[] = "enable-nacl"; | 437 const char kEnableNaCl[] = "enable-nacl"; |
438 | 438 |
| 439 // Enables the use of native notifications instead of using the Chrome based |
| 440 // ones. |
| 441 const char kEnableNativeNotifications[] = "enable-native-notifications"; |
| 442 |
439 // 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 |
440 // 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. |
441 // 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. |
442 const char kEnableNavigationTracing[] = "enable-navigation-tracing"; | 446 const char kEnableNavigationTracing[] = "enable-navigation-tracing"; |
443 | 447 |
444 // Enables the network-related benchmarking extensions. | 448 // Enables the network-related benchmarking extensions. |
445 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; | 449 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; |
446 | 450 |
447 // Enables the new bookmark app system. | 451 // Enables the new bookmark app system. |
448 const char kEnableNewBookmarkApps[] = "enable-new-bookmark-apps"; | 452 const char kEnableNewBookmarkApps[] = "enable-new-bookmark-apps"; |
(...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1386 | 1390 |
1387 // ----------------------------------------------------------------------------- | 1391 // ----------------------------------------------------------------------------- |
1388 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1392 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1389 // | 1393 // |
1390 // You were going to just dump your switches here, weren't you? Instead, please | 1394 // You were going to just dump your switches here, weren't you? Instead, please |
1391 // put them in alphabetical order above, or in order inside the appropriate | 1395 // put them in alphabetical order above, or in order inside the appropriate |
1392 // ifdef at the bottom. The order should match the header. | 1396 // ifdef at the bottom. The order should match the header. |
1393 // ----------------------------------------------------------------------------- | 1397 // ----------------------------------------------------------------------------- |
1394 | 1398 |
1395 } // namespace switches | 1399 } // namespace switches |
OLD | NEW |