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

Unified Diff: third_party/WebKit/Source/core/layout/svg/SVGResources.h

Issue 2065593002: Unprefix the CSS 'filter' property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove disabler. Try different DCHECK expressions. Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/svg/SVGResources.h
diff --git a/third_party/WebKit/Source/core/layout/svg/SVGResources.h b/third_party/WebKit/Source/core/layout/svg/SVGResources.h
index 038423056fe1e4f41e37c2b888d3fcc7ba88e856..891dfec638a22c13c12686276ac4e44ef2c256f8 100644
--- a/third_party/WebKit/Source/core/layout/svg/SVGResources.h
+++ b/third_party/WebKit/Source/core/layout/svg/SVGResources.h
@@ -28,6 +28,7 @@
namespace blink {
+class ComputedStyle;
class LayoutObject;
class LayoutSVGResourceClipper;
class LayoutSVGResourceContainer;
@@ -36,7 +37,6 @@ class LayoutSVGResourceMarker;
class LayoutSVGResourceMasker;
class LayoutSVGResourcePaintServer;
class SVGElement;
-class SVGComputedStyle;
// Holds a set of resources associated with a LayoutObject
class SVGResources {
@@ -44,7 +44,7 @@ class SVGResources {
public:
SVGResources();
- static std::unique_ptr<SVGResources> buildResources(const LayoutObject*, const SVGComputedStyle&);
+ static std::unique_ptr<SVGResources> buildResources(const LayoutObject*, const ComputedStyle&);
void layoutIfNeeded();
static bool supportsMarkers(const SVGElement&);

Powered by Google App Engine
This is Rietveld 408576698