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

Side by Side Diff: Source/web/WebSettingsImpl.cpp

Issue 691863003: Add a setting to do frame scrolls through the root layer. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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/web/WebSettingsImpl.h ('k') | public/web/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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 void WebSettingsImpl::setIgnoreMainFrameOverflowHiddenQuirk(bool ignoreMainFrame OverflowHiddenQuirk) 234 void WebSettingsImpl::setIgnoreMainFrameOverflowHiddenQuirk(bool ignoreMainFrame OverflowHiddenQuirk)
235 { 235 {
236 m_settings->setIgnoreMainFrameOverflowHiddenQuirk(ignoreMainFrameOverflowHid denQuirk); 236 m_settings->setIgnoreMainFrameOverflowHiddenQuirk(ignoreMainFrameOverflowHid denQuirk);
237 } 237 }
238 238
239 void WebSettingsImpl::setReportScreenSizeInPhysicalPixelsQuirk(bool reportScreen SizeInPhysicalPixelsQuirk) 239 void WebSettingsImpl::setReportScreenSizeInPhysicalPixelsQuirk(bool reportScreen SizeInPhysicalPixelsQuirk)
240 { 240 {
241 m_settings->setReportScreenSizeInPhysicalPixelsQuirk(reportScreenSizeInPhysi calPixelsQuirk); 241 m_settings->setReportScreenSizeInPhysicalPixelsQuirk(reportScreenSizeInPhysi calPixelsQuirk);
242 } 242 }
243 243
244 void WebSettingsImpl::setRootLayerScrolls(bool rootLayerScrolls)
245 {
246 m_settings->setRootLayerScrolls(rootLayerScrolls);
247 }
248
244 void WebSettingsImpl::setClobberUserAgentInitialScaleQuirk(bool clobberUserAgent InitialScaleQuirk) 249 void WebSettingsImpl::setClobberUserAgentInitialScaleQuirk(bool clobberUserAgent InitialScaleQuirk)
245 { 250 {
246 m_clobberUserAgentInitialScaleQuirk = clobberUserAgentInitialScaleQuirk; 251 m_clobberUserAgentInitialScaleQuirk = clobberUserAgentInitialScaleQuirk;
247 } 252 }
248 253
249 void WebSettingsImpl::setSupportsMultipleWindows(bool supportsMultipleWindows) 254 void WebSettingsImpl::setSupportsMultipleWindows(bool supportsMultipleWindows)
250 { 255 {
251 m_settings->setSupportsMultipleWindows(supportsMultipleWindows); 256 m_settings->setSupportsMultipleWindows(supportsMultipleWindows);
252 } 257 }
253 258
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 { 731 {
727 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); 732 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options));
728 } 733 }
729 734
730 void WebSettingsImpl::setV8ScriptStreamingEnabled(bool enabled) 735 void WebSettingsImpl::setV8ScriptStreamingEnabled(bool enabled)
731 { 736 {
732 m_settings->setV8ScriptStreamingEnabled(enabled); 737 m_settings->setV8ScriptStreamingEnabled(enabled);
733 } 738 }
734 739
735 } // namespace blink 740 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebSettingsImpl.h ('k') | public/web/WebSettings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698