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

Side by Side Diff: third_party/WebKit/public/web/WebSettings.h

Issue 1662933003: Convert scroll anchoring flag to runtime-enabled feature. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 10 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
« no previous file with comments | « third_party/WebKit/public/web/WebRuntimeFeatures.h ('k') | no next file » | 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) 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 virtual void setAvailablePointerTypes(int) = 0; 184 virtual void setAvailablePointerTypes(int) = 0;
185 virtual void setPrimaryPointerType(PointerType) = 0; 185 virtual void setPrimaryPointerType(PointerType) = 0;
186 virtual void setAvailableHoverTypes(int) = 0; 186 virtual void setAvailableHoverTypes(int) = 0;
187 virtual void setPrimaryHoverType(HoverType) = 0; 187 virtual void setPrimaryHoverType(HoverType) = 0;
188 virtual void setPreferHiddenVolumeControls(bool) = 0; 188 virtual void setPreferHiddenVolumeControls(bool) = 0;
189 virtual void setRenderVSyncNotificationEnabled(bool) = 0; 189 virtual void setRenderVSyncNotificationEnabled(bool) = 0;
190 virtual void setReportScreenSizeInPhysicalPixelsQuirk(bool) = 0; 190 virtual void setReportScreenSizeInPhysicalPixelsQuirk(bool) = 0;
191 virtual void setRootLayerScrolls(bool) = 0; 191 virtual void setRootLayerScrolls(bool) = 0;
192 virtual void setRubberBandingOnCompositorThread(bool) = 0; 192 virtual void setRubberBandingOnCompositorThread(bool) = 0;
193 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_ COMMON) = 0; 193 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_ COMMON) = 0;
194 virtual void setScrollAnchoringEnabled(bool) = 0;
195 virtual void setSelectTrailingWhitespaceEnabled(bool) = 0; 194 virtual void setSelectTrailingWhitespaceEnabled(bool) = 0;
196 virtual void setSelectionIncludesAltImageText(bool) = 0; 195 virtual void setSelectionIncludesAltImageText(bool) = 0;
197 virtual void setSelectionStrategy(SelectionStrategyType) = 0; 196 virtual void setSelectionStrategy(SelectionStrategyType) = 0;
198 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM ON) = 0; 197 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM ON) = 0;
199 virtual void setShouldPrintBackgrounds(bool) = 0; 198 virtual void setShouldPrintBackgrounds(bool) = 0;
200 virtual void setShouldClearDocumentBackground(bool) = 0; 199 virtual void setShouldClearDocumentBackground(bool) = 0;
201 virtual void setShouldRespectImageOrientation(bool) = 0; 200 virtual void setShouldRespectImageOrientation(bool) = 0;
202 virtual void setShowContextMenuOnMouseUp(bool) = 0; 201 virtual void setShowContextMenuOnMouseUp(bool) = 0;
203 virtual void setShowFPSCounter(bool) = 0; 202 virtual void setShowFPSCounter(bool) = 0;
204 virtual void setShowPaintRects(bool) = 0; 203 virtual void setShowPaintRects(bool) = 0;
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 virtual void setWideViewportQuirkEnabled(bool) = 0; 253 virtual void setWideViewportQuirkEnabled(bool) = 0;
255 virtual void setXSSAuditorEnabled(bool) = 0; 254 virtual void setXSSAuditorEnabled(bool) = 0;
256 255
257 protected: 256 protected:
258 ~WebSettings() { } 257 ~WebSettings() { }
259 }; 258 };
260 259
261 } // namespace blink 260 } // namespace blink
262 261
263 #endif 262 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/public/web/WebRuntimeFeatures.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698