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

Side by Side Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGGradientStop.h

Issue 2570223002: [SPv2] Associate effect property nodes for SVG paint chunks (Closed)
Patch Set: keep CompositingRecorder, update expectation Created 4 years 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) 2007 Eric Seidel <eric@webkit.org> 2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
3 * Copyright (C) 2009 Google, Inc. 3 * Copyright (C) 2009 Google, Inc.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 LayoutRect localVisualRect() const override { return LayoutRect(); } 47 LayoutRect localVisualRect() const override { return LayoutRect(); }
48 FloatRect objectBoundingBox() const override { return FloatRect(); } 48 FloatRect objectBoundingBox() const override { return FloatRect(); }
49 FloatRect strokeBoundingBox() const override { return FloatRect(); } 49 FloatRect strokeBoundingBox() const override { return FloatRect(); }
50 FloatRect visualRectInLocalSVGCoordinates() const override { 50 FloatRect visualRectInLocalSVGCoordinates() const override {
51 return FloatRect(); 51 return FloatRect();
52 } 52 }
53 FloatRect localBoundingBoxRectForAccessibility() const final { 53 FloatRect localBoundingBoxRectForAccessibility() const final {
54 return FloatRect(); 54 return FloatRect();
55 } 55 }
56 56
57 bool hasNonIsolatedBlendingDescendants() const final { return false; }
58
57 protected: 59 protected:
58 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override; 60 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override;
59 61
60 private: 62 private:
61 SVGGradientElement* gradientElement() const; 63 SVGGradientElement* gradientElement() const;
62 }; 64 };
63 65
64 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGGradientStop, isSVGGradientStop()); 66 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGGradientStop, isSVGGradientStop());
65 67
66 } // namespace blink 68 } // namespace blink
67 69
68 #endif // LayoutSVGGradientStop_h 70 #endif // LayoutSVGGradientStop_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698