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

Unified Diff: third_party/WebKit/Source/core/dom/Element.h

Issue 2349653002: Added support of getClientRects() for SVG Elements. (Closed)
Patch Set: Align with review comments Created 4 years, 3 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/dom/Element.h
diff --git a/third_party/WebKit/Source/core/dom/Element.h b/third_party/WebKit/Source/core/dom/Element.h
index 230db07ebf4207b3f5d9eb87259610eed5dd85a1..303639c2197bbf6ba4645320dfd2ba1555e502de 100644
--- a/third_party/WebKit/Source/core/dom/Element.h
+++ b/third_party/WebKit/Source/core/dom/Element.h
@@ -715,6 +715,8 @@ private:
void updateId(TreeScope&, const AtomicString& oldId, const AtomicString& newId);
void updateName(const AtomicString& oldName, const AtomicString& newName);
+ void clientQuads(Vector<FloatQuad>& quads);
fs 2016/09/29 12:04:21 Nit: Could this be const?
Shanmuga Pandi 2016/09/29 13:14:13 Adding const will give build break due to document
fs 2016/09/29 13:16:09 I almost expected that would be the case. Thanks.
+
NodeType getNodeType() const final;
bool childTypeAllowed(NodeType) const final;

Powered by Google App Engine
This is Rietveld 408576698