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

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 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 // Enables the Material Design version of chrome://history. 427 // Enables the Material Design version of chrome://history.
428 const char kEnableMaterialDesignHistory[] = "enable-md-history"; 428 const char kEnableMaterialDesignHistory[] = "enable-md-history";
429 429
430 // Enables the Material Design policy page at chrome://md-policy. 430 // Enables the Material Design policy page at chrome://md-policy.
431 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page"; 431 const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page";
432 432
433 // Runs the Native Client inside the renderer process and enables GPU plugin 433 // Runs the Native Client inside the renderer process and enables GPU plugin
434 // (internally adds lEnableGpuPlugin to the command line). 434 // (internally adds lEnableGpuPlugin to the command line).
435 const char kEnableNaCl[] = "enable-nacl"; 435 const char kEnableNaCl[] = "enable-nacl";
436 436
437 // Enables the use of native notifications instead of
438 // using the chrome based ones.
439 const char kEnableNativeNotifications[] = "enable-native-notifications";
440
437 // Enables tracing for each navigation. It will attempt to trace each navigation 441 // Enables tracing for each navigation. It will attempt to trace each navigation
438 // for 10s, until the buffer is full, or until the next navigation. 442 // for 10s, until the buffer is full, or until the next navigation.
439 // It only works if a URL was provided by --trace-upload-url. 443 // It only works if a URL was provided by --trace-upload-url.
440 const char kEnableNavigationTracing[] = "enable-navigation-tracing"; 444 const char kEnableNavigationTracing[] = "enable-navigation-tracing";
441 445
442 // Enables the network-related benchmarking extensions. 446 // Enables the network-related benchmarking extensions.
443 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; 447 const char kEnableNetBenchmarking[] = "enable-net-benchmarking";
444 448
445 // Enables the new bookmark app system. 449 // Enables the new bookmark app system.
446 const char kEnableNewBookmarkApps[] = "enable-new-bookmark-apps"; 450 const char kEnableNewBookmarkApps[] = "enable-new-bookmark-apps";
(...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after
1376 1380
1377 // ----------------------------------------------------------------------------- 1381 // -----------------------------------------------------------------------------
1378 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1382 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1379 // 1383 //
1380 // You were going to just dump your switches here, weren't you? Instead, please 1384 // You were going to just dump your switches here, weren't you? Instead, please
1381 // put them in alphabetical order above, or in order inside the appropriate 1385 // put them in alphabetical order above, or in order inside the appropriate
1382 // ifdef at the bottom. The order should match the header. 1386 // ifdef at the bottom. The order should match the header.
1383 // ----------------------------------------------------------------------------- 1387 // -----------------------------------------------------------------------------
1384 1388
1385 } // namespace switches 1389 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698