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

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

Issue 23172008: Remove flag for lazy layout (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Also remove from .in Created 7 years, 4 months 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/core/testing/InternalSettings.idl ('k') | public/web/WebRuntimeFeatures.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) 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
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
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
OLDNEW
« no previous file with comments | « Source/core/testing/InternalSettings.idl ('k') | public/web/WebRuntimeFeatures.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698