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

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

Issue 15744005: Add a setting for enabling region based columns. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase, resolve conflicts Created 7 years, 6 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
« no previous file with comments | « Source/WebKit/chromium/src/WebSettingsImpl.h ('k') | public/webpage/WebSettings.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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 void WebSettingsImpl::setCSSStickyPositionEnabled(bool enabled) 361 void WebSettingsImpl::setCSSStickyPositionEnabled(bool enabled)
362 { 362 {
363 m_settings->setCSSStickyPositionEnabled(enabled); 363 m_settings->setCSSStickyPositionEnabled(enabled);
364 } 364 }
365 365
366 void WebSettingsImpl::setExperimentalCSSGridLayoutEnabled(bool enabled) 366 void WebSettingsImpl::setExperimentalCSSGridLayoutEnabled(bool enabled)
367 { 367 {
368 m_settings->setCSSGridLayoutEnabled(enabled); 368 m_settings->setCSSGridLayoutEnabled(enabled);
369 } 369 }
370 370
371 void WebSettingsImpl::setRegionBasedColumnsEnabled(bool enabled)
372 {
373 m_settings->setRegionBasedColumnsEnabled(enabled);
374 }
375
371 void WebSettingsImpl::setExperimentalCSSCustomFilterEnabled(bool enabled) 376 void WebSettingsImpl::setExperimentalCSSCustomFilterEnabled(bool enabled)
372 { 377 {
373 m_settings->setCSSCustomFilterEnabled(enabled); 378 m_settings->setCSSCustomFilterEnabled(enabled);
374 } 379 }
375 380
376 void WebSettingsImpl::setOpenGLMultisamplingEnabled(bool enabled) 381 void WebSettingsImpl::setOpenGLMultisamplingEnabled(bool enabled)
377 { 382 {
378 m_settings->setOpenGLMultisamplingEnabled(enabled); 383 m_settings->setOpenGLMultisamplingEnabled(enabled);
379 } 384 }
380 385
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
674 { 679 {
675 m_settings->setSmartInsertDeleteEnabled(enabled); 680 m_settings->setSmartInsertDeleteEnabled(enabled);
676 } 681 }
677 682
678 void WebSettingsImpl::setPinchVirtualViewportEnabled(bool enabled) 683 void WebSettingsImpl::setPinchVirtualViewportEnabled(bool enabled)
679 { 684 {
680 m_settings->setPinchVirtualViewportEnabled(enabled); 685 m_settings->setPinchVirtualViewportEnabled(enabled);
681 } 686 }
682 687
683 } // namespace WebKit 688 } // namespace WebKit
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/src/WebSettingsImpl.h ('k') | public/webpage/WebSettings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698