| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 RuntimeEnabledFeatures::setGeolocationEnabled(enable); | 169 RuntimeEnabledFeatures::setGeolocationEnabled(enable); |
| 170 } | 170 } |
| 171 | 171 |
| 172 bool WebRuntimeFeatures::isGeolocationEnabled() | 172 bool WebRuntimeFeatures::isGeolocationEnabled() |
| 173 { | 173 { |
| 174 return RuntimeEnabledFeatures::geolocationEnabled(); | 174 return RuntimeEnabledFeatures::geolocationEnabled(); |
| 175 } | 175 } |
| 176 | 176 |
| 177 void WebRuntimeFeatures::enableLazyLayout(bool enable) | 177 void WebRuntimeFeatures::enableLazyLayout(bool enable) |
| 178 { | 178 { |
| 179 RuntimeEnabledFeatures::setLazyLayoutEnabled(enable); | 179 // FIXME: Remove this once Chromium stops calling this. |
| 180 } | |
| 181 | |
| 182 bool WebRuntimeFeatures::isLazyLayoutEnabled() | |
| 183 { | |
| 184 return RuntimeEnabledFeatures::lazyLayoutEnabled(); | |
| 185 } | 180 } |
| 186 | 181 |
| 187 void WebRuntimeFeatures::enableLocalStorage(bool enable) | 182 void WebRuntimeFeatures::enableLocalStorage(bool enable) |
| 188 { | 183 { |
| 189 RuntimeEnabledFeatures::setLocalStorageEnabled(enable); | 184 RuntimeEnabledFeatures::setLocalStorageEnabled(enable); |
| 190 } | 185 } |
| 191 | 186 |
| 192 bool WebRuntimeFeatures::isLocalStorageEnabled() | 187 bool WebRuntimeFeatures::isLocalStorageEnabled() |
| 193 { | 188 { |
| 194 return RuntimeEnabledFeatures::localStorageEnabled(); | 189 return RuntimeEnabledFeatures::localStorageEnabled(); |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 { | 381 { |
| 387 RuntimeEnabledFeatures::setCustomDOMElementsEnabled(enable); | 382 RuntimeEnabledFeatures::setCustomDOMElementsEnabled(enable); |
| 388 } | 383 } |
| 389 | 384 |
| 390 void WebRuntimeFeatures::enableOverlayScrollbars(bool enable) | 385 void WebRuntimeFeatures::enableOverlayScrollbars(bool enable) |
| 391 { | 386 { |
| 392 RuntimeEnabledFeatures::setOverlayScrollbarsEnabled(enable); | 387 RuntimeEnabledFeatures::setOverlayScrollbarsEnabled(enable); |
| 393 } | 388 } |
| 394 | 389 |
| 395 } // namespace WebKit | 390 } // namespace WebKit |
| OLD | NEW |