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

Unified Diff: Source/platform/graphics/ListContainer.cpp

Issue 1205733002: Add ListContainer::appendByMoving (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Appease compiler overlords Created 5 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
« no previous file with comments | « Source/platform/graphics/ListContainer.h ('k') | Source/platform/graphics/ListContainerTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/ListContainer.cpp
diff --git a/Source/platform/graphics/ListContainer.cpp b/Source/platform/graphics/ListContainer.cpp
index 34d7661b85c21e3cf965b410df823278e7aec03e..1368443c6d71c6d1b2076a699f6a67f3a82a1ae5 100644
--- a/Source/platform/graphics/ListContainer.cpp
+++ b/Source/platform/graphics/ListContainer.cpp
@@ -427,6 +427,11 @@ bool ListContainerBase::empty() const
return m_data->isEmpty();
}
+size_t ListContainerBase::maxSizeForDerivedClass() const
+{
+ return m_data->elementSize();
+}
+
void ListContainerBase::clear()
{
m_data->clear();
« no previous file with comments | « Source/platform/graphics/ListContainer.h ('k') | Source/platform/graphics/ListContainerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698