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

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

Issue 2258523006: Convert Settings::rootLayerScrolls to RuntimeEnabledFeatures (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add RAII-style helper to toggle REF. Rebase. Created 4 years, 3 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 virtual void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT _COMMON) = 0; 208 virtual void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT _COMMON) = 0;
209 virtual void setPinchOverlayScrollbarThickness(int) = 0; 209 virtual void setPinchOverlayScrollbarThickness(int) = 0;
210 virtual void setPluginsEnabled(bool) = 0; 210 virtual void setPluginsEnabled(bool) = 0;
211 virtual void setAvailablePointerTypes(int) = 0; 211 virtual void setAvailablePointerTypes(int) = 0;
212 virtual void setPrimaryPointerType(PointerType) = 0; 212 virtual void setPrimaryPointerType(PointerType) = 0;
213 virtual void setAvailableHoverTypes(int) = 0; 213 virtual void setAvailableHoverTypes(int) = 0;
214 virtual void setPrimaryHoverType(HoverType) = 0; 214 virtual void setPrimaryHoverType(HoverType) = 0;
215 virtual void setPreferHiddenVolumeControls(bool) = 0; 215 virtual void setPreferHiddenVolumeControls(bool) = 0;
216 virtual void setRenderVSyncNotificationEnabled(bool) = 0; 216 virtual void setRenderVSyncNotificationEnabled(bool) = 0;
217 virtual void setReportScreenSizeInPhysicalPixelsQuirk(bool) = 0; 217 virtual void setReportScreenSizeInPhysicalPixelsQuirk(bool) = 0;
218 virtual void setRootLayerScrolls(bool) = 0;
219 virtual void setRubberBandingOnCompositorThread(bool) = 0; 218 virtual void setRubberBandingOnCompositorThread(bool) = 0;
220 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_ COMMON) = 0; 219 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_ COMMON) = 0;
221 virtual void setSelectTrailingWhitespaceEnabled(bool) = 0; 220 virtual void setSelectTrailingWhitespaceEnabled(bool) = 0;
222 virtual void setSelectionIncludesAltImageText(bool) = 0; 221 virtual void setSelectionIncludesAltImageText(bool) = 0;
223 virtual void setSelectionStrategy(SelectionStrategyType) = 0; 222 virtual void setSelectionStrategy(SelectionStrategyType) = 0;
224 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM ON) = 0; 223 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM ON) = 0;
225 virtual void setShouldPrintBackgrounds(bool) = 0; 224 virtual void setShouldPrintBackgrounds(bool) = 0;
226 virtual void setShouldClearDocumentBackground(bool) = 0; 225 virtual void setShouldClearDocumentBackground(bool) = 0;
227 virtual void setShouldRespectImageOrientation(bool) = 0; 226 virtual void setShouldRespectImageOrientation(bool) = 0;
228 virtual void setShowContextMenuOnMouseUp(bool) = 0; 227 virtual void setShowContextMenuOnMouseUp(bool) = 0;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 virtual void setWideViewportQuirkEnabled(bool) = 0; 278 virtual void setWideViewportQuirkEnabled(bool) = 0;
280 virtual void setXSSAuditorEnabled(bool) = 0; 279 virtual void setXSSAuditorEnabled(bool) = 0;
281 280
282 protected: 281 protected:
283 ~WebSettings() { } 282 ~WebSettings() { }
284 }; 283 };
285 284
286 } // namespace blink 285 } // namespace blink
287 286
288 #endif 287 #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