Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1027)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 1509923002: Implement native web notifications for mac (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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.
Peter Beverloo 2015/12/09 00:12:00 nit: weird line breaks, and apply some grammar
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 939 matching lines...) Expand 10 before | Expand all | Expand 10 after
1389 1393
1390 // ----------------------------------------------------------------------------- 1394 // -----------------------------------------------------------------------------
1391 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1395 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1392 // 1396 //
1393 // You were going to just dump your switches here, weren't you? Instead, please 1397 // You were going to just dump your switches here, weren't you? Instead, please
1394 // put them in alphabetical order above, or in order inside the appropriate 1398 // put them in alphabetical order above, or in order inside the appropriate
1395 // ifdef at the bottom. The order should match the header. 1399 // ifdef at the bottom. The order should match the header.
1396 // ----------------------------------------------------------------------------- 1400 // -----------------------------------------------------------------------------
1397 1401
1398 } // namespace switches 1402 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698