Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009, 2010, 2011, 2012 Apple Inc. All rights reserv ed. | 2 * Copyright (C) 2006, 2007, 2009, 2010, 2011, 2012 Apple Inc. All rights reserv ed. |
| 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 26 #ifndef CanvasRenderingContext2D_h | 26 #ifndef CanvasRenderingContext2D_h |
| 27 #define CanvasRenderingContext2D_h | 27 #define CanvasRenderingContext2D_h |
| 28 | 28 |
| 29 #include "bindings/core/v8/ScriptWrappable.h" | 29 #include "bindings/core/v8/ScriptWrappable.h" |
| 30 #include "bindings/modules/v8/UnionTypesModules.h" | 30 #include "bindings/modules/v8/UnionTypesModules.h" |
| 31 #include "core/html/canvas/CanvasContextCreationAttributes.h" | 31 #include "core/html/canvas/CanvasContextCreationAttributes.h" |
| 32 #include "core/html/canvas/CanvasRenderingContext.h" | 32 #include "core/html/canvas/CanvasRenderingContext.h" |
| 33 #include "core/html/canvas/CanvasRenderingContextFactory.h" | 33 #include "core/html/canvas/CanvasRenderingContextFactory.h" |
| 34 #include "core/svg/SVGResourceClient.h" | 34 #include "core/svg/SVGResourceClient.h" |
| 35 #include "modules/ModulesExport.h" | 35 #include "modules/ModulesExport.h" |
| 36 #include "modules/canvas2d/BaseRenderingContext2D.h" | |
| 36 #include "modules/canvas2d/Canvas2DContextAttributes.h" | 37 #include "modules/canvas2d/Canvas2DContextAttributes.h" |
| 37 #include "modules/canvas2d/CanvasPathMethods.h" | |
| 38 #include "modules/canvas2d/CanvasRenderingContext2DState.h" | 38 #include "modules/canvas2d/CanvasRenderingContext2DState.h" |
| 39 #include "platform/graphics/GraphicsTypes.h" | 39 #include "platform/graphics/GraphicsTypes.h" |
| 40 #include "platform/heap/GarbageCollected.h" | 40 #include "platform/heap/GarbageCollected.h" |
| 41 #include "public/platform/WebThread.h" | 41 #include "public/platform/WebThread.h" |
| 42 #include "wtf/Vector.h" | 42 #include "wtf/Vector.h" |
| 43 #include "wtf/text/WTFString.h" | 43 #include "wtf/text/WTFString.h" |
| 44 | 44 |
| 45 namespace blink { class WebLayer; } | 45 namespace blink { class WebLayer; } |
| 46 | 46 |
| 47 namespace blink { | 47 namespace blink { |
| 48 | 48 |
| 49 class CanvasImageSource; | 49 class CanvasImageSource; |
| 50 class Element; | 50 class Element; |
| 51 class ExceptionState; | 51 class ExceptionState; |
| 52 class FloatRect; | 52 class FloatRect; |
| 53 class FloatSize; | 53 class FloatSize; |
| 54 class Font; | 54 class Font; |
| 55 class FontMetrics; | 55 class FontMetrics; |
| 56 class HitRegion; | 56 class HitRegion; |
| 57 class HitRegionOptions; | 57 class HitRegionOptions; |
| 58 class HitRegionManager; | 58 class HitRegionManager; |
| 59 class ImageData; | 59 class ImageData; |
| 60 class Path2D; | 60 class Path2D; |
| 61 class SVGMatrixTearOff; | 61 class SVGMatrixTearOff; |
| 62 class TextMetrics; | 62 class TextMetrics; |
| 63 | 63 |
| 64 typedef HTMLImageElementOrHTMLVideoElementOrHTMLCanvasElementOrImageBitmap Canva sImageSourceUnion; | 64 typedef HTMLImageElementOrHTMLVideoElementOrHTMLCanvasElementOrImageBitmap Canva sImageSourceUnion; |
| 65 | 65 |
| 66 class MODULES_EXPORT CanvasRenderingContext2D final : public CanvasRenderingCont ext, public CanvasPathMethods, public WebThread::TaskObserver, public SVGResourc eClient { | 66 class MODULES_EXPORT CanvasRenderingContext2D final : public CanvasRenderingCont ext, public BaseRenderingContext2D, public WebThread::TaskObserver, public SVGRe sourceClient { |
|
Justin Novosad
2016/02/18 03:52:09
The svg resource client business needs to be figur
ikilpatrick
2016/02/19 00:31:05
Yeah lets do this in a separate CL.
| |
| 67 DEFINE_WRAPPERTYPEINFO(); | 67 DEFINE_WRAPPERTYPEINFO(); |
| 68 USING_PRE_FINALIZER(CanvasRenderingContext2D, dispose); | 68 USING_PRE_FINALIZER(CanvasRenderingContext2D, dispose); |
| 69 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(CanvasRenderingContext2D); | |
| 69 public: | 70 public: |
| 70 class Factory : public CanvasRenderingContextFactory { | 71 class Factory : public CanvasRenderingContextFactory { |
| 71 WTF_MAKE_NONCOPYABLE(Factory); | 72 WTF_MAKE_NONCOPYABLE(Factory); |
| 72 public: | 73 public: |
| 73 Factory() {} | 74 Factory() {} |
| 74 ~Factory() override {} | 75 ~Factory() override {} |
| 75 | 76 |
| 76 PassOwnPtrWillBeRawPtr<CanvasRenderingContext> create(HTMLCanvasElement* canvas, const CanvasContextCreationAttributes& attrs, Document& document) overr ide | 77 PassOwnPtrWillBeRawPtr<CanvasRenderingContext> create(HTMLCanvasElement* canvas, const CanvasContextCreationAttributes& attrs, Document& document) overr ide |
| 77 { | 78 { |
| 78 return adoptPtrWillBeNoop(new CanvasRenderingContext2D(canvas, attrs , document)); | 79 return adoptPtrWillBeNoop(new CanvasRenderingContext2D(canvas, attrs , document)); |
| 79 } | 80 } |
| 80 CanvasRenderingContext::ContextType contextType() const override { retur n CanvasRenderingContext::Context2d; } | 81 CanvasRenderingContext::ContextType contextType() const override { retur n CanvasRenderingContext::Context2d; } |
| 81 void onError(HTMLCanvasElement*, const String& error) override { } | 82 void onError(HTMLCanvasElement*, const String& error) override { } |
| 82 }; | 83 }; |
| 83 | 84 |
| 84 ~CanvasRenderingContext2D() override; | 85 ~CanvasRenderingContext2D() override; |
| 85 | 86 |
| 86 void strokeStyle(StringOrCanvasGradientOrCanvasPattern&) const; | |
| 87 void setStrokeStyle(const StringOrCanvasGradientOrCanvasPattern&); | |
| 88 | |
| 89 void fillStyle(StringOrCanvasGradientOrCanvasPattern&) const; | |
| 90 void setFillStyle(const StringOrCanvasGradientOrCanvasPattern&); | |
| 91 | |
| 92 double lineWidth() const; | |
| 93 void setLineWidth(double); | |
| 94 | |
| 95 String lineCap() const; | |
| 96 void setLineCap(const String&); | |
| 97 | |
| 98 String lineJoin() const; | |
| 99 void setLineJoin(const String&); | |
| 100 | |
| 101 double miterLimit() const; | |
| 102 void setMiterLimit(double); | |
| 103 | |
| 104 const Vector<double>& getLineDash() const; | |
| 105 void setLineDash(const Vector<double>&); | |
| 106 | |
| 107 double lineDashOffset() const; | |
| 108 void setLineDashOffset(double); | |
| 109 | |
| 110 double shadowOffsetX() const; | |
| 111 void setShadowOffsetX(double); | |
| 112 | |
| 113 double shadowOffsetY() const; | |
| 114 void setShadowOffsetY(double); | |
| 115 | |
| 116 double shadowBlur() const; | |
| 117 void setShadowBlur(double); | |
| 118 | |
| 119 String shadowColor() const; | |
| 120 void setShadowColor(const String&); | |
| 121 | |
| 122 double globalAlpha() const; | |
| 123 void setGlobalAlpha(double); | |
| 124 | |
| 125 bool isContextLost() const override; | 87 bool isContextLost() const override; |
| 126 | 88 |
| 127 bool shouldAntialias() const; | |
| 128 void setShouldAntialias(bool) override; | 89 void setShouldAntialias(bool) override; |
| 129 | 90 |
| 130 String globalCompositeOperation() const; | |
| 131 void setGlobalCompositeOperation(const String&); | |
| 132 | |
| 133 String filter() const; | |
| 134 void setFilter(const String&); | |
| 135 | |
| 136 void save(); | |
| 137 void restore(); | |
| 138 | |
| 139 PassRefPtrWillBeRawPtr<SVGMatrixTearOff> currentTransform() const; | |
| 140 void setCurrentTransform(PassRefPtrWillBeRawPtr<SVGMatrixTearOff>); | |
| 141 | |
| 142 void scale(double sx, double sy); | |
| 143 void rotate(double angleInRadians); | |
| 144 void translate(double tx, double ty); | |
| 145 void transform(double m11, double m12, double m21, double m22, double dx, do uble dy); | |
| 146 void setTransform(double m11, double m12, double m21, double m22, double dx, double dy); | |
| 147 void resetTransform(); | |
| 148 | |
| 149 void beginPath(); | |
| 150 | |
| 151 void fill(const String& winding = "nonzero"); | |
| 152 void fill(Path2D*, const String& winding = "nonzero"); | |
| 153 void stroke(); | |
| 154 void stroke(Path2D*); | |
| 155 void clip(const String& winding = "nonzero"); | |
| 156 void clip(Path2D*, const String& winding = "nonzero"); | |
| 157 | |
| 158 bool isPointInPath(const double x, const double y, const String& winding = " nonzero"); | |
| 159 bool isPointInPath(Path2D*, const double x, const double y, const String& wi nding = "nonzero"); | |
| 160 bool isPointInStroke(const double x, const double y); | |
| 161 bool isPointInStroke(Path2D*, const double x, const double y); | |
| 162 | |
| 163 void scrollPathIntoView(); | 91 void scrollPathIntoView(); |
| 164 void scrollPathIntoView(Path2D*); | 92 void scrollPathIntoView(Path2D*); |
| 165 | 93 |
| 166 void clearRect(double x, double y, double width, double height) override; | 94 void clearRect(double x, double y, double width, double height) override; |
| 167 void fillRect(double x, double y, double width, double height); | |
| 168 void strokeRect(double x, double y, double width, double height); | |
| 169 | |
| 170 void drawImage(const CanvasImageSourceUnion&, double x, double y, ExceptionS tate&); | |
| 171 void drawImage(const CanvasImageSourceUnion&, double x, double y, double wid th, double height, ExceptionState&); | |
| 172 void drawImage(const CanvasImageSourceUnion&, double sx, double sy, double s w, double sh, double dx, double dy, double dw, double dh, ExceptionState&); | |
| 173 void drawImage(CanvasImageSource*, double sx, double sy, double sw, double s h, double dx, double dy, double dw, double dh, ExceptionState&); | |
| 174 | |
| 175 CanvasGradient* createLinearGradient(double x0, double y0, double x1, double y1); | |
| 176 CanvasGradient* createRadialGradient(double x0, double y0, double r0, double x1, double y1, double r1, ExceptionState&); | |
| 177 CanvasPattern* createPattern(const CanvasImageSourceUnion&, const String& re petitionType, ExceptionState&); | |
| 178 | 95 |
| 179 ImageData* createImageData(ImageData*) const; | 96 ImageData* createImageData(ImageData*) const; |
|
Justin Novosad
2016/02/18 03:52:09
The image data stuff should live in Base IMO, even
ikilpatrick
2016/02/19 00:31:05
Done.
| |
| 180 ImageData* createImageData(double width, double height, ExceptionState&) con st; | 97 ImageData* createImageData(double width, double height, ExceptionState&) con st; |
| 181 ImageData* getImageData(double sx, double sy, double sw, double sh, Exceptio nState&) const; | 98 ImageData* getImageData(double sx, double sy, double sw, double sh, Exceptio nState&) const; |
| 182 void putImageData(ImageData*, double dx, double dy, ExceptionState&); | 99 void putImageData(ImageData*, double dx, double dy, ExceptionState&); |
| 183 void putImageData(ImageData*, double dx, double dy, double dirtyX, double di rtyY, double dirtyWidth, double dirtyHeight, ExceptionState&); | 100 void putImageData(ImageData*, double dx, double dy, double dirtyX, double di rtyY, double dirtyWidth, double dirtyHeight, ExceptionState&); |
| 184 | 101 |
| 185 void reset() override; | 102 void reset() override; |
| 186 | 103 |
| 187 String font() const; | 104 String font() const; |
| 188 void setFont(const String&) override; | 105 void setFont(const String&) override; |
| 189 | 106 |
| 190 String textAlign() const; | 107 String textAlign() const; |
| 191 void setTextAlign(const String&); | 108 void setTextAlign(const String&); |
| 192 | 109 |
| 193 String textBaseline() const; | 110 String textBaseline() const; |
| 194 void setTextBaseline(const String&); | 111 void setTextBaseline(const String&); |
| 195 | 112 |
| 196 String direction() const; | 113 String direction() const; |
| 197 void setDirection(const String&); | 114 void setDirection(const String&); |
| 198 | 115 |
| 199 void fillText(const String& text, double x, double y); | 116 void fillText(const String& text, double x, double y); |
| 200 void fillText(const String& text, double x, double y, double maxWidth); | 117 void fillText(const String& text, double x, double y, double maxWidth); |
| 201 void strokeText(const String& text, double x, double y); | 118 void strokeText(const String& text, double x, double y); |
| 202 void strokeText(const String& text, double x, double y, double maxWidth); | 119 void strokeText(const String& text, double x, double y, double maxWidth); |
| 203 TextMetrics* measureText(const String& text); | 120 TextMetrics* measureText(const String& text); |
| 204 | 121 |
| 205 bool imageSmoothingEnabled() const; | |
| 206 void setImageSmoothingEnabled(bool); | |
| 207 String imageSmoothingQuality() const; | |
| 208 void setImageSmoothingQuality(const String&); | |
| 209 | |
| 210 void getContextAttributes(Canvas2DContextAttributes&) const; | 122 void getContextAttributes(Canvas2DContextAttributes&) const; |
| 211 | 123 |
| 212 void drawFocusIfNeeded(Element*); | 124 void drawFocusIfNeeded(Element*); |
| 213 void drawFocusIfNeeded(Path2D*, Element*); | 125 void drawFocusIfNeeded(Path2D*, Element*); |
| 214 | 126 |
| 215 void addHitRegion(const HitRegionOptions&, ExceptionState&); | 127 void addHitRegion(const HitRegionOptions&, ExceptionState&); |
| 216 void removeHitRegion(const String& id); | 128 void removeHitRegion(const String& id); |
| 217 void clearHitRegions(); | 129 void clearHitRegions(); |
| 218 HitRegion* hitRegionAtPoint(const FloatPoint&); | 130 HitRegion* hitRegionAtPoint(const FloatPoint&); |
| 219 unsigned hitRegionsCount() const override; | 131 unsigned hitRegionsCount() const override; |
| 220 | 132 |
| 221 void loseContext(LostContextMode) override; | 133 void loseContext(LostContextMode) override; |
| 222 void didSetSurfaceSize() override; | 134 void didSetSurfaceSize() override; |
| 223 | 135 |
| 224 void restoreCanvasMatrixClipStack(SkCanvas*) const override; | 136 void restoreCanvasMatrixClipStack(SkCanvas*) const override; |
| 225 | 137 |
| 226 // TaskObserver implementation | 138 // TaskObserver implementation |
| 227 void didProcessTask() override; | 139 void didProcessTask() override; |
| 228 void willProcessTask() override { } | 140 void willProcessTask() override { } |
| 229 | 141 |
| 230 void styleDidChange(const ComputedStyle* oldStyle, const ComputedStyle& newS tyle) override; | 142 void styleDidChange(const ComputedStyle* oldStyle, const ComputedStyle& newS tyle) override; |
| 231 | 143 |
| 232 // SVGResourceClient implementation | 144 // SVGResourceClient implementation |
| 233 void filterNeedsInvalidation() override; | 145 void filterNeedsInvalidation() override; |
| 234 | 146 |
| 147 // BaseRenderingContext2D implementation | |
| 148 bool originClean() const final; | |
| 149 void setOriginTainted() final; | |
| 150 bool wouldTaintOrigin(CanvasImageSource* source) final { return CanvasRender ingContext::wouldTaintOrigin(source); } | |
| 151 | |
| 152 int width() const final; | |
| 153 int height() const final; | |
| 154 | |
| 155 bool hasImageBuffer() const final; | |
| 156 ImageBuffer* imageBuffer() const final; | |
| 157 | |
| 158 bool parseColorOrCurrentColor(Color&, const String& colorString) const final ; | |
| 159 | |
| 160 SkCanvas* drawingCanvas() const final; | |
| 161 SkCanvas* existingDrawingCanvas() const final; | |
| 162 void disableDeferral(DisableDeferralReason) final; | |
| 163 | |
| 164 AffineTransform baseTransform() const final; | |
| 165 void didDraw(const SkIRect& dirtyRect) final; | |
| 166 | |
| 167 bool stateHasFilter() final; | |
| 168 SkImageFilter* stateGetFilter() final; | |
| 169 | |
| 170 void validateStateStack() final; | |
| 171 | |
| 235 private: | 172 private: |
| 236 friend class CanvasRenderingContext2DAutoRestoreSkCanvas; | 173 friend class CanvasRenderingContext2DAutoRestoreSkCanvas; |
| 237 | 174 |
| 238 CanvasRenderingContext2D(HTMLCanvasElement*, const CanvasContextCreationAttr ibutes& attrs, Document&); | 175 CanvasRenderingContext2D(HTMLCanvasElement*, const CanvasContextCreationAttr ibutes& attrs, Document&); |
| 239 | 176 |
| 240 void dispose(); | 177 void dispose(); |
| 241 | 178 |
| 242 CanvasRenderingContext2DState& modifiableState(); | |
| 243 const CanvasRenderingContext2DState& state() const { return *m_stateStack.la st(); } | |
| 244 | |
| 245 void setShadow(const FloatSize& offset, double blur, RGBA32 color); | 179 void setShadow(const FloatSize& offset, double blur, RGBA32 color); |
|
Justin Novosad
2016/02/18 03:52:09
Looks like I missed this guy in an earlier cleanup
ikilpatrick
2016/02/19 00:31:05
Done.
| |
| 246 | 180 |
| 247 void dispatchContextLostEvent(Timer<CanvasRenderingContext2D>*); | 181 void dispatchContextLostEvent(Timer<CanvasRenderingContext2D>*); |
| 248 void dispatchContextRestoredEvent(Timer<CanvasRenderingContext2D>*); | 182 void dispatchContextRestoredEvent(Timer<CanvasRenderingContext2D>*); |
| 249 void tryRestoreContextEvent(Timer<CanvasRenderingContext2D>*); | 183 void tryRestoreContextEvent(Timer<CanvasRenderingContext2D>*); |
| 250 | 184 |
| 251 bool computeDirtyRect(const FloatRect& localBounds, SkIRect*); | |
| 252 bool computeDirtyRect(const FloatRect& localBounds, const SkIRect& transform edClipBounds, SkIRect*); | |
| 253 void didDraw(const SkIRect&); | |
| 254 | |
| 255 SkCanvas* drawingCanvas() const; | |
| 256 | |
| 257 void unwindStateStack(); | 185 void unwindStateStack(); |
| 258 void realizeSaves(); | |
| 259 | 186 |
| 260 void pruneLocalFontCache(size_t targetSize); | 187 void pruneLocalFontCache(size_t targetSize); |
| 261 void schedulePruneLocalFontCacheIfNeeded(); | 188 void schedulePruneLocalFontCacheIfNeeded(); |
| 262 | 189 |
| 263 bool shouldDrawImageAntialiased(const FloatRect& destRect) const; | |
| 264 | |
| 265 template<typename DrawFunc, typename ContainsFunc> | |
| 266 bool draw(const DrawFunc&, const ContainsFunc&, const SkRect& bounds, Canvas RenderingContext2DState::PaintType, CanvasRenderingContext2DState::ImageType = C anvasRenderingContext2DState::NoImage); | |
| 267 void drawPathInternal(const Path&, CanvasRenderingContext2DState::PaintType, SkPath::FillType = SkPath::kWinding_FillType); | |
| 268 void drawImageInternal(SkCanvas*, CanvasImageSource*, Image*, const FloatRec t& srcRect, const FloatRect& dstRect, const SkPaint*); | |
| 269 void clipInternal(const Path&, const String& windingRuleString); | |
| 270 | |
| 271 bool isPointInPathInternal(const Path&, const double x, const double y, cons t String& windingRuleString); | |
| 272 bool isPointInStrokeInternal(const Path&, const double x, const double y); | |
| 273 | |
| 274 void scrollPathIntoViewInternal(const Path&); | 190 void scrollPathIntoViewInternal(const Path&); |
| 275 | 191 |
| 276 void drawTextInternal(const String&, double x, double y, CanvasRenderingCont ext2DState::PaintType, double* maxWidth = nullptr); | 192 void drawTextInternal(const String&, double x, double y, CanvasRenderingCont ext2DState::PaintType, double* maxWidth = nullptr); |
| 277 | 193 |
| 278 const Font& accessFont(); | 194 const Font& accessFont(); |
| 279 int getFontBaseline(const FontMetrics&) const; | 195 int getFontBaseline(const FontMetrics&) const; |
| 280 | 196 |
| 281 void clearCanvas(); | |
| 282 bool rectContainsTransformedRect(const FloatRect&, const SkIRect&) const; | |
| 283 | |
| 284 void inflateStrokeRect(FloatRect&) const; | |
| 285 | |
| 286 template<typename DrawFunc> | |
| 287 void compositedDraw(const DrawFunc&, SkCanvas*, CanvasRenderingContext2DStat e::PaintType, CanvasRenderingContext2DState::ImageType); | |
| 288 | |
| 289 void drawFocusIfNeededInternal(const Path&, Element*); | 197 void drawFocusIfNeededInternal(const Path&, Element*); |
| 290 bool focusRingCallIsValid(const Path&, Element*); | 198 bool focusRingCallIsValid(const Path&, Element*); |
| 291 void drawFocusRing(const Path&); | 199 void drawFocusRing(const Path&); |
| 292 void updateElementAccessibility(const Path&, Element*); | 200 void updateElementAccessibility(const Path&, Element*); |
| 293 | 201 |
| 294 void validateStateStack(); | |
| 295 | |
| 296 enum DrawType { | |
| 297 ClipFill, // Fill that is already known to cover the current clip | |
| 298 UntransformedUnclippedFill | |
| 299 }; | |
| 300 | |
| 301 void checkOverdraw(const SkRect&, const SkPaint*, CanvasRenderingContext2DSt ate::ImageType, DrawType); | |
| 302 | |
| 303 CanvasRenderingContext::ContextType contextType() const override { return Ca nvasRenderingContext::Context2d; } | 202 CanvasRenderingContext::ContextType contextType() const override { return Ca nvasRenderingContext::Context2d; } |
| 304 bool is2d() const override { return true; } | 203 bool is2d() const override { return true; } |
|
Justin Novosad
2016/02/18 03:52:09
Should this go in Base? I'm not sure...
ikilpatrick
2016/02/19 00:31:05
It's overriding CanvasRenderingContext which BaseR
| |
| 305 bool isAccelerated() const override; | 204 bool isAccelerated() const override; |
| 306 bool hasAlpha() const override { return m_hasAlpha; } | 205 bool hasAlpha() const override { return m_hasAlpha; } |
| 307 void setIsHidden(bool) override; | 206 void setIsHidden(bool) override; |
| 308 void stop() final; | 207 void stop() final; |
| 309 DECLARE_VIRTUAL_TRACE(); | 208 DECLARE_VIRTUAL_TRACE(); |
| 310 | 209 |
| 311 virtual bool isTransformInvertible() const; | 210 virtual bool isTransformInvertible() const; |
| 312 | 211 |
| 313 WebLayer* platformLayer() const override; | 212 WebLayer* platformLayer() const override; |
| 314 | 213 |
| 315 WillBeHeapVector<OwnPtrWillBeMember<CanvasRenderingContext2DState>> m_stateS tack; | |
| 316 PersistentWillBeMember<HitRegionManager> m_hitRegionManager; | 214 PersistentWillBeMember<HitRegionManager> m_hitRegionManager; |
| 317 AntiAliasingMode m_clipAntialiasing; | |
| 318 bool m_hasAlpha; | 215 bool m_hasAlpha; |
| 319 LostContextMode m_contextLostMode; | 216 LostContextMode m_contextLostMode; |
| 320 bool m_contextRestorable; | 217 bool m_contextRestorable; |
| 321 unsigned m_tryRestoreContextAttemptCount; | 218 unsigned m_tryRestoreContextAttemptCount; |
| 322 Timer<CanvasRenderingContext2D> m_dispatchContextLostEventTimer; | 219 Timer<CanvasRenderingContext2D> m_dispatchContextLostEventTimer; |
| 323 Timer<CanvasRenderingContext2D> m_dispatchContextRestoredEventTimer; | 220 Timer<CanvasRenderingContext2D> m_dispatchContextRestoredEventTimer; |
| 324 Timer<CanvasRenderingContext2D> m_tryRestoreContextEventTimer; | 221 Timer<CanvasRenderingContext2D> m_tryRestoreContextEventTimer; |
| 325 | 222 |
| 326 HashMap<String, Font> m_fontsResolvedUsingCurrentStyle; | 223 HashMap<String, Font> m_fontsResolvedUsingCurrentStyle; |
| 327 bool m_pruneLocalFontCacheScheduled; | 224 bool m_pruneLocalFontCacheScheduled; |
| 328 ListHashSet<String> m_fontLRUList; | 225 ListHashSet<String> m_fontLRUList; |
| 329 }; | 226 }; |
| 330 | 227 |
| 331 DEFINE_TYPE_CASTS(CanvasRenderingContext2D, CanvasRenderingContext, context, con text->is2d(), context.is2d()); | 228 DEFINE_TYPE_CASTS(CanvasRenderingContext2D, CanvasRenderingContext, context, con text->is2d(), context.is2d()); |
| 332 | 229 |
| 333 } // namespace blink | 230 } // namespace blink |
| 334 | 231 |
| 335 #endif // CanvasRenderingContext2D_h | 232 #endif // CanvasRenderingContext2D_h |
| OLD | NEW |