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

Side by Side Diff: Source/core/frame/Settings.in

Issue 722353002: Add development Blink setting for impl-side rubber-banding (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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
OLDNEW
1 # Defines properties which are available on the Settings object. 1 # Defines properties which are available on the Settings object.
2 # 2 #
3 # Please think carefully before adding a new Setting. Some questions to 3 # Please think carefully before adding a new Setting. Some questions to
4 # consider are: 4 # consider are:
5 # - Should this be a RuntimeEnabledFeature instead? Settings are for things 5 # - Should this be a RuntimeEnabledFeature instead? Settings are for things
6 # which we support either values of at runtime. Features are set at renderer 6 # which we support either values of at runtime. Features are set at renderer
7 # process startup and are never changed. Features also tend to be set to a 7 # process startup and are never changed. Features also tend to be set to a
8 # value based on the platform or the stability of the code in question, where 8 # value based on the platform or the stability of the code in question, where
9 # as settings both codepaths need to be stable. 9 # as settings both codepaths need to be stable.
10 # - How will you ensure test coverage of all relevant values of your setting? 10 # - How will you ensure test coverage of all relevant values of your setting?
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 # Settings for experimental desktop pinch-zoom support (with semantics 217 # Settings for experimental desktop pinch-zoom support (with semantics
218 # optimized for large screens). Pinch-zoom generally is implemented mainly 218 # optimized for large screens). Pinch-zoom generally is implemented mainly
219 # outside of blink (in the compositor) and doesn't require any settings. 219 # outside of blink (in the compositor) and doesn't require any settings.
220 # These settings are for an experimental modification to how pinch-zoom 220 # These settings are for an experimental modification to how pinch-zoom
221 # behaves. TODO(wjmaclean): link to design document. 221 # behaves. TODO(wjmaclean): link to design document.
222 # crbug.com/304869 tracks removal. 222 # crbug.com/304869 tracks removal.
223 pinchVirtualViewportEnabled initial=false 223 pinchVirtualViewportEnabled initial=false
224 useSolidColorScrollbars initial=false 224 useSolidColorScrollbars initial=false
225 pinchOverlayScrollbarThickness type=int, initial=0 225 pinchOverlayScrollbarThickness type=int, initial=0
226 226
227 # The rubber-band overscroll effect is implemented in Blink and is being moved
228 # to the compositor thread. This will be set to true and eventually removed.
229 # crbug.com/133097
230 rubberBandingOnCompositorThread initial=false
231
227 mainFrameClipsContent initial=true 232 mainFrameClipsContent initial=true
228 233
229 234
230 # Presumably used by LayoutTests? Unclear. 235 # Presumably used by LayoutTests? Unclear.
231 useWideViewport initial=true, invalidate=ViewportDescription 236 useWideViewport initial=true, invalidate=ViewportDescription
232 loadWithOverviewMode initial=true, invalidate=ViewportDescription 237 loadWithOverviewMode initial=true, invalidate=ViewportDescription
233 238
234 239
235 # Font scale factor for accessibility, applied as part of text autosizing. 240 # Font scale factor for accessibility, applied as part of text autosizing.
236 accessibilityFontScaleFactor type=double, initial=1.0, invalidate=TextAutosizing 241 accessibilityFontScaleFactor type=double, initial=1.0, invalidate=TextAutosizing
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 primaryHoverType type=HoverType, initial=HoverTypeNone, invalidate=MediaQuery 303 primaryHoverType type=HoverType, initial=HoverTypeNone, invalidate=MediaQuery
299 304
300 # Whether accessibility support is enabled at all. 305 # Whether accessibility support is enabled at all.
301 accessibilityEnabled initial=false, invalidate=AccessibilityState 306 accessibilityEnabled initial=false, invalidate=AccessibilityState
302 307
303 # If true, the value in password fields is exposed to assistive technologies. 308 # If true, the value in password fields is exposed to assistive technologies.
304 accessibilityPasswordValuesEnabled initial=false 309 accessibilityPasswordValuesEnabled initial=false
305 310
306 # If true, static text nodes expose inline text box children. 311 # If true, static text nodes expose inline text box children.
307 inlineTextBoxAccessibilityEnabled initial=false 312 inlineTextBoxAccessibilityEnabled initial=false
OLDNEW
« no previous file with comments | « Source/core/frame/FrameView.cpp ('k') | Source/core/rendering/compositing/RenderLayerCompositor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698