| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 void WebSettingsImpl::setPluginsEnabled(bool enabled) | 252 void WebSettingsImpl::setPluginsEnabled(bool enabled) |
| 253 { | 253 { |
| 254 m_settings->setPluginsEnabled(enabled); | 254 m_settings->setPluginsEnabled(enabled); |
| 255 } | 255 } |
| 256 | 256 |
| 257 void WebSettingsImpl::setDOMPasteAllowed(bool enabled) | 257 void WebSettingsImpl::setDOMPasteAllowed(bool enabled) |
| 258 { | 258 { |
| 259 m_settings->setDOMPasteAllowed(enabled); | 259 m_settings->setDOMPasteAllowed(enabled); |
| 260 } | 260 } |
| 261 | 261 |
| 262 void WebSettingsImpl::setNeedsSiteSpecificQuirks(bool enabled) | |
| 263 { | |
| 264 m_settings->setNeedsSiteSpecificQuirks(enabled); | |
| 265 } | |
| 266 | |
| 267 void WebSettingsImpl::setShrinksStandaloneImagesToFit(bool shrinkImages) | 262 void WebSettingsImpl::setShrinksStandaloneImagesToFit(bool shrinkImages) |
| 268 { | 263 { |
| 269 m_settings->setShrinksStandaloneImagesToFit(shrinkImages); | 264 m_settings->setShrinksStandaloneImagesToFit(shrinkImages); |
| 270 } | 265 } |
| 271 | 266 |
| 272 void WebSettingsImpl::setShrinksViewportContentToFit(bool shrinkViewportContent) | 267 void WebSettingsImpl::setShrinksViewportContentToFit(bool shrinkViewportContent) |
| 273 { | 268 { |
| 274 m_shrinksViewportContentToFit = shrinkViewportContent; | 269 m_shrinksViewportContentToFit = shrinkViewportContent; |
| 275 } | 270 } |
| 276 | 271 |
| (...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 { | 689 { |
| 695 m_settings->setDisallowFullscreenForNonMediaElements(enabled); | 690 m_settings->setDisallowFullscreenForNonMediaElements(enabled); |
| 696 } | 691 } |
| 697 | 692 |
| 698 void WebSettingsImpl::setV8CacheOptions(V8CacheOptions options) | 693 void WebSettingsImpl::setV8CacheOptions(V8CacheOptions options) |
| 699 { | 694 { |
| 700 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); | 695 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); |
| 701 } | 696 } |
| 702 | 697 |
| 703 } // namespace blink | 698 } // namespace blink |
| OLD | NEW |