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

Side by Side Diff: Source/web/WebSettingsImpl.h

Issue 379253002: Initial implementation of display list backed 2D canvases (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: applied review comments Created 6 years, 5 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
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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 virtual void setDefaultFixedFontSize(int) OVERRIDE; 84 virtual void setDefaultFixedFontSize(int) OVERRIDE;
85 virtual void setDefaultFontSize(int) OVERRIDE; 85 virtual void setDefaultFontSize(int) OVERRIDE;
86 virtual void setDefaultTextEncodingName(const WebString&) OVERRIDE; 86 virtual void setDefaultTextEncodingName(const WebString&) OVERRIDE;
87 virtual void setDefaultVideoPosterURL(const WebString&) OVERRIDE; 87 virtual void setDefaultVideoPosterURL(const WebString&) OVERRIDE;
88 virtual void setDeferredFiltersEnabled(bool) OVERRIDE; 88 virtual void setDeferredFiltersEnabled(bool) OVERRIDE;
89 virtual void setDeferredImageDecodingEnabled(bool) OVERRIDE; 89 virtual void setDeferredImageDecodingEnabled(bool) OVERRIDE;
90 virtual void setDeviceScaleAdjustment(float) OVERRIDE; 90 virtual void setDeviceScaleAdjustment(float) OVERRIDE;
91 virtual void setDeviceSupportsMouse(bool) OVERRIDE; 91 virtual void setDeviceSupportsMouse(bool) OVERRIDE;
92 virtual void setDeviceSupportsTouch(bool) OVERRIDE; 92 virtual void setDeviceSupportsTouch(bool) OVERRIDE;
93 virtual void setDisallowFullscreenForNonMediaElements(bool) OVERRIDE; 93 virtual void setDisallowFullscreenForNonMediaElements(bool) OVERRIDE;
94 virtual void setDisplayList2dCanvasEnabled(bool) OVERRIDE;
94 virtual void setDoubleTapToZoomEnabled(bool) OVERRIDE; 95 virtual void setDoubleTapToZoomEnabled(bool) OVERRIDE;
95 virtual void setDownloadableBinaryFontsEnabled(bool) OVERRIDE; 96 virtual void setDownloadableBinaryFontsEnabled(bool) OVERRIDE;
96 virtual void setEditingBehavior(EditingBehavior) OVERRIDE; 97 virtual void setEditingBehavior(EditingBehavior) OVERRIDE;
97 virtual void setEnableScrollAnimator(bool) OVERRIDE; 98 virtual void setEnableScrollAnimator(bool) OVERRIDE;
98 virtual void setEnableTouchAdjustment(bool) OVERRIDE; 99 virtual void setEnableTouchAdjustment(bool) OVERRIDE;
99 virtual void setRegionBasedColumnsEnabled(bool) OVERRIDE; 100 virtual void setRegionBasedColumnsEnabled(bool) OVERRIDE;
100 virtual void setExperimentalWebGLEnabled(bool) OVERRIDE; 101 virtual void setExperimentalWebGLEnabled(bool) OVERRIDE;
101 virtual void setFantasyFontFamily(const WebString&, UScriptCode = USCRIPT_CO MMON) OVERRIDE; 102 virtual void setFantasyFontFamily(const WebString&, UScriptCode = USCRIPT_CO MMON) OVERRIDE;
102 virtual void setFixedFontFamily(const WebString&, UScriptCode = USCRIPT_COMM ON) OVERRIDE; 103 virtual void setFixedFontFamily(const WebString&, UScriptCode = USCRIPT_COMM ON) OVERRIDE;
103 virtual void setGestureTapHighlightEnabled(bool) OVERRIDE; 104 virtual void setGestureTapHighlightEnabled(bool) OVERRIDE;
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 // the Android SDK prior to and including version 18. Presumably, this 216 // the Android SDK prior to and including version 18. Presumably, this
216 // can be removed any time after 2015. See http://crbug.com/313754. 217 // can be removed any time after 2015. See http://crbug.com/313754.
217 bool m_clobberUserAgentInitialScaleQuirk; 218 bool m_clobberUserAgentInitialScaleQuirk;
218 bool m_mainFrameResizesAreOrientationChanges; 219 bool m_mainFrameResizesAreOrientationChanges;
219 bool m_disallowFullscreenForNonMediaElements; 220 bool m_disallowFullscreenForNonMediaElements;
220 }; 221 };
221 222
222 } // namespace blink 223 } // namespace blink
223 224
224 #endif 225 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698