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

Side by Side Diff: trunk/Source/WebKit/chromium/src/WebSettingsImpl.cpp

Issue 14706011: Revert 150468 "Switching CSS Variables over to RuntimeEnabledFea..." (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « trunk/Source/WebKit/chromium/src/WebSettingsImpl.h ('k') | trunk/Source/core/css/CSSParser.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 void WebSettingsImpl::setExperimentalCSSGridLayoutEnabled(bool enabled) 373 void WebSettingsImpl::setExperimentalCSSGridLayoutEnabled(bool enabled)
374 { 374 {
375 m_settings->setCSSGridLayoutEnabled(enabled); 375 m_settings->setCSSGridLayoutEnabled(enabled);
376 } 376 }
377 377
378 void WebSettingsImpl::setExperimentalCSSCustomFilterEnabled(bool enabled) 378 void WebSettingsImpl::setExperimentalCSSCustomFilterEnabled(bool enabled)
379 { 379 {
380 m_settings->setCSSCustomFilterEnabled(enabled); 380 m_settings->setCSSCustomFilterEnabled(enabled);
381 } 381 }
382 382
383 void WebSettingsImpl::setExperimentalCSSVariablesEnabled(bool enabled)
384 {
385 m_settings->setCSSVariablesEnabled(enabled);
386 }
387
383 void WebSettingsImpl::setOpenGLMultisamplingEnabled(bool enabled) 388 void WebSettingsImpl::setOpenGLMultisamplingEnabled(bool enabled)
384 { 389 {
385 m_settings->setOpenGLMultisamplingEnabled(enabled); 390 m_settings->setOpenGLMultisamplingEnabled(enabled);
386 } 391 }
387 392
388 void WebSettingsImpl::setPrivilegedWebGLExtensionsEnabled(bool enabled) 393 void WebSettingsImpl::setPrivilegedWebGLExtensionsEnabled(bool enabled)
389 { 394 {
390 m_settings->setPrivilegedWebGLExtensionsEnabled(enabled); 395 m_settings->setPrivilegedWebGLExtensionsEnabled(enabled);
391 } 396 }
392 397
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 { 676 {
672 m_settings->setSelectionIncludesAltImageText(enabled); 677 m_settings->setSelectionIncludesAltImageText(enabled);
673 } 678 }
674 679
675 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled) 680 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled)
676 { 681 {
677 m_settings->setSmartInsertDeleteEnabled(enabled); 682 m_settings->setSmartInsertDeleteEnabled(enabled);
678 } 683 }
679 684
680 } // namespace WebKit 685 } // namespace WebKit
OLDNEW
« no previous file with comments | « trunk/Source/WebKit/chromium/src/WebSettingsImpl.h ('k') | trunk/Source/core/css/CSSParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698