Chromium Code Reviews| 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 392 | 392 |
| 393 // Defer image decoding in WebKit until painting. | 393 // Defer image decoding in WebKit until painting. |
| 394 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; | 394 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; |
| 395 | 395 |
| 396 // Enables the deadline scheduler. | 396 // Enables the deadline scheduler. |
| 397 const char kEnableDeadlineScheduling[] = "enable-deadline-scheduling"; | 397 const char kEnableDeadlineScheduling[] = "enable-deadline-scheduling"; |
| 398 | 398 |
| 399 // Enables delegated renderer. | 399 // Enables delegated renderer. |
| 400 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; | 400 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; |
| 401 | 401 |
| 402 // Enables the DirectWrite font rendering system on windows. | |
|
Avi (use Gerrit)
2013/11/16 06:26:51
#if defined(OS_WIN)
| |
| 403 const char kEnableDirectWrite[] = "enable-direct-write"; | |
| 404 | |
| 402 // Enables restarting interrupted downloads. | 405 // Enables restarting interrupted downloads. |
| 403 const char kEnableDownloadResumption[] = "enable-download-resumption"; | 406 const char kEnableDownloadResumption[] = "enable-download-resumption"; |
| 404 | 407 |
| 405 // Enables support for Encrypted Media Extensions (e.g. MediaKeys). | 408 // Enables support for Encrypted Media Extensions (e.g. MediaKeys). |
| 406 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; | 409 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; |
| 407 | 410 |
| 408 // Enable experimental canvas features, e.g. canvas 2D context attributes | 411 // Enable experimental canvas features, e.g. canvas 2D context attributes |
| 409 const char kEnableExperimentalCanvasFeatures[] = | 412 const char kEnableExperimentalCanvasFeatures[] = |
| 410 "enable-experimental-canvas-features"; | 413 "enable-experimental-canvas-features"; |
| 411 | 414 |
| (...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1005 #endif | 1008 #endif |
| 1006 | 1009 |
| 1007 #if defined(OS_POSIX) | 1010 #if defined(OS_POSIX) |
| 1008 // Causes the child processes to cleanly exit via calling exit(). | 1011 // Causes the child processes to cleanly exit via calling exit(). |
| 1009 const char kChildCleanExit[] = "child-clean-exit"; | 1012 const char kChildCleanExit[] = "child-clean-exit"; |
| 1010 #endif | 1013 #endif |
| 1011 | 1014 |
| 1012 // Don't dump stuff here, follow the same order as the header. | 1015 // Don't dump stuff here, follow the same order as the header. |
| 1013 | 1016 |
| 1014 } // namespace switches | 1017 } // namespace switches |
| OLD | NEW |