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

Side by Side Diff: third_party/WebKit/Source/platform/exported/WebRuntimeFeatures.cpp

Issue 2893243003: color: Add ColorCanvasExtensions runtime flag (Closed)
Patch Set: Update webkit_unit_tests to use new flags Created 3 years, 7 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 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 } 73 }
74 74
75 void WebRuntimeFeatures::EnableCanvas2dImageChromium(bool enable) { 75 void WebRuntimeFeatures::EnableCanvas2dImageChromium(bool enable) {
76 RuntimeEnabledFeatures::setCanvas2dImageChromiumEnabled(enable); 76 RuntimeEnabledFeatures::setCanvas2dImageChromiumEnabled(enable);
77 } 77 }
78 78
79 void WebRuntimeFeatures::EnableColorCorrectRendering(bool enable) { 79 void WebRuntimeFeatures::EnableColorCorrectRendering(bool enable) {
80 RuntimeEnabledFeatures::setColorCorrectRenderingEnabled(enable); 80 RuntimeEnabledFeatures::setColorCorrectRenderingEnabled(enable);
81 } 81 }
82 82
83 void WebRuntimeFeatures::EnableColorCorrectRenderingDefaultMode(bool enable) {
84 RuntimeEnabledFeatures::setColorCorrectRenderingDefaultModeEnabled(enable);
85 }
86
87 void WebRuntimeFeatures::EnableCompositedSelectionUpdate(bool enable) { 83 void WebRuntimeFeatures::EnableCompositedSelectionUpdate(bool enable) {
88 RuntimeEnabledFeatures::setCompositedSelectionUpdateEnabled(enable); 84 RuntimeEnabledFeatures::setCompositedSelectionUpdateEnabled(enable);
89 } 85 }
90 86
91 bool WebRuntimeFeatures::IsCompositedSelectionUpdateEnabled() { 87 bool WebRuntimeFeatures::IsCompositedSelectionUpdateEnabled() {
92 return RuntimeEnabledFeatures::compositedSelectionUpdateEnabled(); 88 return RuntimeEnabledFeatures::compositedSelectionUpdateEnabled();
93 } 89 }
94 90
95 void WebRuntimeFeatures::EnableDatabase(bool enable) { 91 void WebRuntimeFeatures::EnableDatabase(bool enable) {
96 RuntimeEnabledFeatures::setDatabaseEnabled(enable); 92 RuntimeEnabledFeatures::setDatabaseEnabled(enable);
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 392
397 void WebRuntimeFeatures::EnableMediaControlsOverlayPlayButton(bool enable) { 393 void WebRuntimeFeatures::EnableMediaControlsOverlayPlayButton(bool enable) {
398 RuntimeEnabledFeatures::setMediaControlsOverlayPlayButtonEnabled(enable); 394 RuntimeEnabledFeatures::setMediaControlsOverlayPlayButtonEnabled(enable);
399 } 395 }
400 396
401 void WebRuntimeFeatures::EnableLocationHardReload(bool enable) { 397 void WebRuntimeFeatures::EnableLocationHardReload(bool enable) {
402 RuntimeEnabledFeatures::setLocationHardReloadEnabled(enable); 398 RuntimeEnabledFeatures::setLocationHardReloadEnabled(enable);
403 } 399 }
404 400
405 } // namespace blink 401 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698