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

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

Issue 652483003: Plumb in flag to enable antialiased clipping in HTML 5 Canvas (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: More cleanup Created 6 years, 2 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
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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 virtual void setPreferCompositingToLCDTextEnabled(bool) override; 56 virtual void setPreferCompositingToLCDTextEnabled(bool) override;
57 virtual void setAccessibilityEnabled(bool) override; 57 virtual void setAccessibilityEnabled(bool) override;
58 virtual void setAllowDisplayOfInsecureContent(bool) override; 58 virtual void setAllowDisplayOfInsecureContent(bool) override;
59 virtual void setAllowFileAccessFromFileURLs(bool) override; 59 virtual void setAllowFileAccessFromFileURLs(bool) override;
60 virtual void setAllowCustomScrollbarInMainFrame(bool) override; 60 virtual void setAllowCustomScrollbarInMainFrame(bool) override;
61 virtual void setAllowRunningOfInsecureContent(bool) override; 61 virtual void setAllowRunningOfInsecureContent(bool) override;
62 virtual void setAllowConnectingInsecureWebSocket(bool) override; 62 virtual void setAllowConnectingInsecureWebSocket(bool) override;
63 virtual void setAllowScriptsToCloseWindows(bool) override; 63 virtual void setAllowScriptsToCloseWindows(bool) override;
64 virtual void setAllowUniversalAccessFromFileURLs(bool) override; 64 virtual void setAllowUniversalAccessFromFileURLs(bool) override;
65 virtual void setAntialiased2dCanvasEnabled(bool) override; 65 virtual void setAntialiased2dCanvasEnabled(bool) override;
66 virtual void setAntialiasedClips2dCanvasEnabled(bool) override;
66 virtual void setAsynchronousSpellCheckingEnabled(bool) override; 67 virtual void setAsynchronousSpellCheckingEnabled(bool) override;
67 virtual void setAutoZoomFocusedNodeToLegibleScale(bool) override; 68 virtual void setAutoZoomFocusedNodeToLegibleScale(bool) override;
68 virtual void setCaretBrowsingEnabled(bool) override; 69 virtual void setCaretBrowsingEnabled(bool) override;
69 virtual void setClobberUserAgentInitialScaleQuirk(bool) override; 70 virtual void setClobberUserAgentInitialScaleQuirk(bool) override;
70 virtual void setContainerCullingEnabled(bool) override; 71 virtual void setContainerCullingEnabled(bool) override;
71 virtual void setCookieEnabled(bool) override; 72 virtual void setCookieEnabled(bool) override;
72 virtual void setNavigateOnDragDrop(bool) override; 73 virtual void setNavigateOnDragDrop(bool) override;
73 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO MMON) override; 74 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO MMON) override;
74 virtual void setDNSPrefetchingEnabled(bool) override; 75 virtual void setDNSPrefetchingEnabled(bool) override;
75 virtual void setDOMPasteAllowed(bool) override; 76 virtual void setDOMPasteAllowed(bool) override;
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 // This quirk is to maintain compatibility with Android apps built on 216 // This quirk is to maintain compatibility with Android apps built on
216 // the Android SDK prior to and including version 18. Presumably, this 217 // the Android SDK prior to and including version 18. Presumably, this
217 // can be removed any time after 2015. See http://crbug.com/313754. 218 // can be removed any time after 2015. See http://crbug.com/313754.
218 bool m_clobberUserAgentInitialScaleQuirk; 219 bool m_clobberUserAgentInitialScaleQuirk;
219 bool m_mainFrameResizesAreOrientationChanges; 220 bool m_mainFrameResizesAreOrientationChanges;
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