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

Side by Side Diff: Source/core/layout/svg/LayoutSVGImage.h

Issue 1162383003: C++11: Replace 0 with nullptr where applicable in layout code. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add one more file. Created 5 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
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 virtual const char* name() const override { return "LayoutSVGImage"; } 53 virtual const char* name() const override { return "LayoutSVGImage"; }
54 54
55 protected: 55 protected:
56 virtual void willBeDestroyed() override; 56 virtual void willBeDestroyed() override;
57 57
58 private: 58 private:
59 virtual FloatRect strokeBoundingBox() const override { return m_objectBoundi ngBox; } 59 virtual FloatRect strokeBoundingBox() const override { return m_objectBoundi ngBox; }
60 60
61 virtual void addFocusRingRects(Vector<LayoutRect>&, const LayoutPoint& addit ionalOffset) const override; 61 virtual void addFocusRingRects(Vector<LayoutRect>&, const LayoutPoint& addit ionalOffset) const override;
62 62
63 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) override; 63 virtual void imageChanged(WrappedImagePtr, const IntRect* = nullptr) overrid e;
64 64
65 virtual void layout() override; 65 virtual void layout() override;
66 virtual void paint(const PaintInfo&, const LayoutPoint&) override; 66 virtual void paint(const PaintInfo&, const LayoutPoint&) override;
67 67
68 FloatSize computeImageViewportSize(ImageResource&) const; 68 FloatSize computeImageViewportSize(ImageResource&) const;
69 69
70 virtual bool nodeAtFloatPoint(HitTestResult&, const FloatPoint& pointInParen t, HitTestAction) override; 70 virtual bool nodeAtFloatPoint(HitTestResult&, const FloatPoint& pointInParen t, HitTestAction) override;
71 71
72 virtual AffineTransform localTransform() const override { return m_localTran sform; } 72 virtual AffineTransform localTransform() const override { return m_localTran sform; }
73 73
74 bool m_needsBoundariesUpdate : 1; 74 bool m_needsBoundariesUpdate : 1;
75 bool m_needsTransformUpdate : 1; 75 bool m_needsTransformUpdate : 1;
76 AffineTransform m_localTransform; 76 AffineTransform m_localTransform;
77 FloatRect m_objectBoundingBox; 77 FloatRect m_objectBoundingBox;
78 OwnPtr<LayoutImageResource> m_imageResource; 78 OwnPtr<LayoutImageResource> m_imageResource;
79 79
80 RefPtr<const SkPicture> m_bufferedForeground; 80 RefPtr<const SkPicture> m_bufferedForeground;
81 }; 81 };
82 82
83 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGImage, isSVGImage()); 83 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGImage, isSVGImage());
84 84
85 } // namespace blink 85 } // namespace blink
86 86
87 #endif // LayoutSVGImage_h 87 #endif // LayoutSVGImage_h
OLDNEW
« no previous file with comments | « Source/core/layout/svg/LayoutSVGHiddenContainer.h ('k') | Source/core/layout/svg/LayoutSVGInline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698