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

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

Issue 14987004: Switching CSS Variables over to RuntimeEnabledFeatures (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | « Source/WebKit/chromium/src/WebSettingsImpl.h ('k') | 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 void WebSettingsImpl::setExperimentalCSSGridLayoutEnabled(bool enabled) 375 void WebSettingsImpl::setExperimentalCSSGridLayoutEnabled(bool enabled)
376 { 376 {
377 m_settings->setCSSGridLayoutEnabled(enabled); 377 m_settings->setCSSGridLayoutEnabled(enabled);
378 } 378 }
379 379
380 void WebSettingsImpl::setExperimentalCSSCustomFilterEnabled(bool enabled) 380 void WebSettingsImpl::setExperimentalCSSCustomFilterEnabled(bool enabled)
381 { 381 {
382 m_settings->setCSSCustomFilterEnabled(enabled); 382 m_settings->setCSSCustomFilterEnabled(enabled);
383 } 383 }
384 384
385 void WebSettingsImpl::setExperimentalCSSVariablesEnabled(bool enabled)
386 {
387 m_settings->setCSSVariablesEnabled(enabled);
388 }
389
390 void WebSettingsImpl::setOpenGLMultisamplingEnabled(bool enabled) 385 void WebSettingsImpl::setOpenGLMultisamplingEnabled(bool enabled)
391 { 386 {
392 m_settings->setOpenGLMultisamplingEnabled(enabled); 387 m_settings->setOpenGLMultisamplingEnabled(enabled);
393 } 388 }
394 389
395 void WebSettingsImpl::setPrivilegedWebGLExtensionsEnabled(bool enabled) 390 void WebSettingsImpl::setPrivilegedWebGLExtensionsEnabled(bool enabled)
396 { 391 {
397 m_settings->setPrivilegedWebGLExtensionsEnabled(enabled); 392 m_settings->setPrivilegedWebGLExtensionsEnabled(enabled);
398 } 393 }
399 394
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 { 678 {
684 m_settings->setSelectionIncludesAltImageText(enabled); 679 m_settings->setSelectionIncludesAltImageText(enabled);
685 } 680 }
686 681
687 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled) 682 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled)
688 { 683 {
689 m_settings->setSmartInsertDeleteEnabled(enabled); 684 m_settings->setSmartInsertDeleteEnabled(enabled);
690 } 685 }
691 686
692 } // namespace WebKit 687 } // namespace WebKit
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/src/WebSettingsImpl.h ('k') | Source/core/css/CSSParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698