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

Unified Diff: third_party/WebKit/Source/core/dom/shadow/InsertionPoint.h

Issue 1671873002: Fixed for-loop increments in InsertionPoint::setDistributedNodes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/shadow/InsertionPoint.h
diff --git a/third_party/WebKit/Source/core/dom/shadow/InsertionPoint.h b/third_party/WebKit/Source/core/dom/shadow/InsertionPoint.h
index 7717a75963f3bf1280183ea66fc636812fb106ce..2d198b19ec5f15aa66fdcf455f267b953a4bd99d 100644
--- a/third_party/WebKit/Source/core/dom/shadow/InsertionPoint.h
+++ b/third_party/WebKit/Source/core/dom/shadow/InsertionPoint.h
@@ -59,8 +59,6 @@ public:
void attach(const AttachContext& = AttachContext()) override;
void detach(const AttachContext& = AttachContext()) override;
- bool shouldUseFallbackElements() const;
-
size_t distributedNodesSize() const { return m_distributedNodes.size(); }
Node* distributedNodeAt(size_t index) const { return m_distributedNodes.at(index).get(); }
Node* firstDistributedNode() const { return m_distributedNodes.isEmpty() ? 0 : m_distributedNodes.first().get(); }

Powered by Google App Engine
This is Rietveld 408576698