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

Side by Side Diff: third_party/WebKit/Source/core/dom/Element.h

Issue 2490163002: Reland of "Tracking reference filter mutation via SVGElementProxy" (Closed)
Patch Set: Fix double observer unregistration; simplify scope selection; add tests Created 4 years, 1 month 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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. All rights reserved. 6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. All rights reserved.
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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 const AtomicString& namespaceURI() const { return m_tagName.namespaceURI(); } 307 const AtomicString& namespaceURI() const { return m_tagName.namespaceURI(); }
308 308
309 const AtomicString& locateNamespacePrefix( 309 const AtomicString& locateNamespacePrefix(
310 const AtomicString& namespaceURI) const; 310 const AtomicString& namespaceURI) const;
311 311
312 String nodeName() const override; 312 String nodeName() const override;
313 313
314 Element* cloneElementWithChildren(); 314 Element* cloneElementWithChildren();
315 Element* cloneElementWithoutChildren(); 315 Element* cloneElementWithoutChildren();
316 316
317 void scheduleSVGFilterLayerUpdateHack();
318
319 void setBooleanAttribute(const QualifiedName&, bool); 317 void setBooleanAttribute(const QualifiedName&, bool);
320 318
321 virtual const StylePropertySet* additionalPresentationAttributeStyle() { 319 virtual const StylePropertySet* additionalPresentationAttributeStyle() {
322 return nullptr; 320 return nullptr;
323 } 321 }
324 void invalidateStyleAttribute(); 322 void invalidateStyleAttribute();
325 323
326 const StylePropertySet* inlineStyle() const { 324 const StylePropertySet* inlineStyle() const {
327 return elementData() ? elementData()->m_inlineStyle.get() : nullptr; 325 return elementData() ? elementData()->m_inlineStyle.get() : nullptr;
328 } 326 }
(...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after
1157 #define DECLARE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ 1155 #define DECLARE_ELEMENT_FACTORY_WITH_TAGNAME(T) \
1158 static T* create(const QualifiedName&, Document&) 1156 static T* create(const QualifiedName&, Document&)
1159 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ 1157 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \
1160 T* T::create(const QualifiedName& tagName, Document& document) { \ 1158 T* T::create(const QualifiedName& tagName, Document& document) { \
1161 return new T(tagName, document); \ 1159 return new T(tagName, document); \
1162 } 1160 }
1163 1161
1164 } // namespace blink 1162 } // namespace blink
1165 1163
1166 #endif // Element_h 1164 #endif // Element_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.cpp ('k') | third_party/WebKit/Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698