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

Side by Side Diff: content/public/common/content_switches.cc

Issue 950723003: [Push] Enable PushManager.hasPermission() in browser tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2311
Patch Set: Created 5 years, 9 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
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
10 // have an effect. 0 disables MSAA. 10 // have an effect. 0 disables MSAA.
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 377
378 // Make the values returned to window.performance.memory more granular and more 378 // Make the values returned to window.performance.memory more granular and more
379 // up to date in shared worker. Without this flag, the memory information is 379 // up to date in shared worker. Without this flag, the memory information is
380 // still available, but it is bucketized and updated less frequently. This flag 380 // still available, but it is bucketized and updated less frequently. This flag
381 // also applys to workers. 381 // also applys to workers.
382 const char kEnablePreciseMemoryInfo[] = "enable-precise-memory-info"; 382 const char kEnablePreciseMemoryInfo[] = "enable-precise-memory-info";
383 383
384 // Enables payloads for received push messages when using the W3C Push API. 384 // Enables payloads for received push messages when using the W3C Push API.
385 const char kEnablePushMessagePayload[] = "enable-push-message-payload"; 385 const char kEnablePushMessagePayload[] = "enable-push-message-payload";
386 386
387 // Enable hasPermission() method of the W3C Push API.
388 const char kEnablePushMessagingHasPermission[] =
389 "enable-push-messaging-has-permission";
390
387 // Set options to cache V8 data. (off, preparse data, or code) 391 // Set options to cache V8 data. (off, preparse data, or code)
388 const char kV8CacheOptions[] = "v8-cache-options"; 392 const char kV8CacheOptions[] = "v8-cache-options";
389 393
390 // Enables the CSS multicol implementation that uses the regions implementation. 394 // Enables the CSS multicol implementation that uses the regions implementation.
391 const char kEnableRegionBasedColumns[] = 395 const char kEnableRegionBasedColumns[] =
392 "enable-region-based-columns"; 396 "enable-region-based-columns";
393 397
394 // Cause the OS X sandbox write to syslog every time an access to a resource 398 // Cause the OS X sandbox write to syslog every time an access to a resource
395 // is denied by the sandbox. 399 // is denied by the sandbox.
396 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; 400 const char kEnableSandboxLogging[] = "enable-sandbox-logging";
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
978 const char kEnableNpapi[] = "enable-npapi"; 982 const char kEnableNpapi[] = "enable-npapi";
979 983
980 #if defined(ENABLE_PLUGINS) 984 #if defined(ENABLE_PLUGINS)
981 // Enables the plugin power saver feature. 985 // Enables the plugin power saver feature.
982 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; 986 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver";
983 #endif 987 #endif
984 988
985 // Don't dump stuff here, follow the same order as the header. 989 // Don't dump stuff here, follow the same order as the header.
986 990
987 } // namespace switches 991 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698