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

Side by Side Diff: Source/core/rendering/svg/RenderSVGImage.h

Issue 332543002: Rename Repaint to Paint Invalidation Part 4 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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) 2006 Alexander Kellett <lypanov@kde.org> 2 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org>
3 * Copyright (C) 2006, 2009 Apple Inc. All rights reserved. 3 * Copyright (C) 2006, 2009 Apple Inc. All rights reserved.
4 * Copyright (C) 2007 Rob Buis <buis@kde.org> 4 * Copyright (C) 2007 Rob Buis <buis@kde.org>
5 * Copyright (C) 2009 Google, Inc. 5 * Copyright (C) 2009 Google, Inc.
6 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> 6 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com>
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 void paintForeground(PaintInfo&); 46 void paintForeground(PaintInfo&);
47 47
48 private: 48 private:
49 virtual const char* renderName() const OVERRIDE { return "RenderSVGImage"; } 49 virtual const char* renderName() const OVERRIDE { return "RenderSVGImage"; }
50 virtual bool isSVGImage() const OVERRIDE { return true; } 50 virtual bool isSVGImage() const OVERRIDE { return true; }
51 51
52 virtual const AffineTransform& localToParentTransform() const OVERRIDE { ret urn m_localTransform; } 52 virtual const AffineTransform& localToParentTransform() const OVERRIDE { ret urn m_localTransform; }
53 53
54 virtual FloatRect objectBoundingBox() const OVERRIDE { return m_objectBoundi ngBox; } 54 virtual FloatRect objectBoundingBox() const OVERRIDE { return m_objectBoundi ngBox; }
55 virtual FloatRect strokeBoundingBox() const OVERRIDE { return m_objectBoundi ngBox; } 55 virtual FloatRect strokeBoundingBox() const OVERRIDE { return m_objectBoundi ngBox; }
56 virtual FloatRect repaintRectInLocalCoordinates() const OVERRIDE { return m_ repaintBoundingBox; } 56 virtual FloatRect paintInvalidationRectInLocalCoordinates() const OVERRIDE { return m_repaintBoundingBox; }
57 57
58 virtual void addFocusRingRects(Vector<IntRect>&, const LayoutPoint& addition alOffset, const RenderLayerModelObject* paintContainer = 0) OVERRIDE; 58 virtual void addFocusRingRects(Vector<IntRect>&, const LayoutPoint& addition alOffset, const RenderLayerModelObject* paintContainer = 0) OVERRIDE;
59 59
60 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) OVERRIDE; 60 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) OVERRIDE;
61 61
62 virtual void layout() OVERRIDE; 62 virtual void layout() OVERRIDE;
63 virtual void paint(PaintInfo&, const LayoutPoint&) OVERRIDE; 63 virtual void paint(PaintInfo&, const LayoutPoint&) OVERRIDE;
64 64
65 void invalidateBufferedForeground(); 65 void invalidateBufferedForeground();
66 66
67 virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const F loatPoint& pointInParent, HitTestAction) OVERRIDE; 67 virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const F loatPoint& pointInParent, HitTestAction) OVERRIDE;
68 68
69 virtual AffineTransform localTransform() const OVERRIDE { return m_localTran sform; } 69 virtual AffineTransform localTransform() const OVERRIDE { return m_localTran sform; }
70 70
71 bool m_needsBoundariesUpdate : 1; 71 bool m_needsBoundariesUpdate : 1;
72 bool m_needsTransformUpdate : 1; 72 bool m_needsTransformUpdate : 1;
73 AffineTransform m_localTransform; 73 AffineTransform m_localTransform;
74 FloatRect m_objectBoundingBox; 74 FloatRect m_objectBoundingBox;
75 FloatRect m_repaintBoundingBox; 75 FloatRect m_repaintBoundingBox;
76 OwnPtr<RenderImageResource> m_imageResource; 76 OwnPtr<RenderImageResource> m_imageResource;
77 77
78 OwnPtr<ImageBuffer> m_bufferedForeground; 78 OwnPtr<ImageBuffer> m_bufferedForeground;
79 }; 79 };
80 80
81 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGImage, isSVGImage()); 81 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGImage, isSVGImage());
82 82
83 } // namespace WebCore 83 } // namespace WebCore
84 84
85 #endif // RenderSVGImage_h 85 #endif // RenderSVGImage_h
OLDNEW
« no previous file with comments | « Source/core/rendering/svg/RenderSVGHiddenContainer.h ('k') | Source/core/rendering/svg/RenderSVGImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698