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 "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 Loading... |
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 Loading... |
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 |
OLD | NEW |