OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |