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

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: rebase Created 4 years, 11 months 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 #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
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
440 // using the chrome based ones.
Peter Beverloo 2016/01/08 05:14:26 weird wrapping chrome -> Chrome
Miguel Garcia 2016/01/08 11:46:55 Done.
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 938 matching lines...) Expand 10 before | Expand all | Expand 10 after
1387 1391
1388 // ----------------------------------------------------------------------------- 1392 // -----------------------------------------------------------------------------
1389 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1393 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1390 // 1394 //
1391 // You were going to just dump your switches here, weren't you? Instead, please 1395 // You were going to just dump your switches here, weren't you? Instead, please
1392 // put them in alphabetical order above, or in order inside the appropriate 1396 // put them in alphabetical order above, or in order inside the appropriate
1393 // ifdef at the bottom. The order should match the header. 1397 // ifdef at the bottom. The order should match the header.
1394 // ----------------------------------------------------------------------------- 1398 // -----------------------------------------------------------------------------
1395 1399
1396 } // namespace switches 1400 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698