| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 void WebSettingsImpl::setNeedsSiteSpecificQuirks(bool enabled) | 216 void WebSettingsImpl::setNeedsSiteSpecificQuirks(bool enabled) |
| 217 { | 217 { |
| 218 m_settings->setNeedsSiteSpecificQuirks(enabled); | 218 m_settings->setNeedsSiteSpecificQuirks(enabled); |
| 219 } | 219 } |
| 220 | 220 |
| 221 void WebSettingsImpl::setShrinksStandaloneImagesToFit(bool shrinkImages) | 221 void WebSettingsImpl::setShrinksStandaloneImagesToFit(bool shrinkImages) |
| 222 { | 222 { |
| 223 m_settings->setShrinksStandaloneImagesToFit(shrinkImages); | 223 m_settings->setShrinksStandaloneImagesToFit(shrinkImages); |
| 224 } | 224 } |
| 225 | 225 |
| 226 void WebSettingsImpl::setSpatialNavigationEnabled(bool enabled) |
| 227 { |
| 228 m_settings->setSpatialNavigationEnabled(enabled); |
| 229 } |
| 230 |
| 226 void WebSettingsImpl::setUsesEncodingDetector(bool usesDetector) | 231 void WebSettingsImpl::setUsesEncodingDetector(bool usesDetector) |
| 227 { | 232 { |
| 228 m_settings->setUsesEncodingDetector(usesDetector); | 233 m_settings->setUsesEncodingDetector(usesDetector); |
| 229 } | 234 } |
| 230 | 235 |
| 231 void WebSettingsImpl::setTextAreasAreResizable(bool areResizable) | 236 void WebSettingsImpl::setTextAreasAreResizable(bool areResizable) |
| 232 { | 237 { |
| 233 m_settings->setTextAreasAreResizable(areResizable); | 238 m_settings->setTextAreasAreResizable(areResizable); |
| 234 } | 239 } |
| 235 | 240 |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 { | 695 { |
| 691 m_settings->setSelectionIncludesAltImageText(enabled); | 696 m_settings->setSelectionIncludesAltImageText(enabled); |
| 692 } | 697 } |
| 693 | 698 |
| 694 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled) | 699 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled) |
| 695 { | 700 { |
| 696 m_settings->setSmartInsertDeleteEnabled(enabled); | 701 m_settings->setSmartInsertDeleteEnabled(enabled); |
| 697 } | 702 } |
| 698 | 703 |
| 699 } // namespace WebKit | 704 } // namespace WebKit |
| OLD | NEW |