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

Unified Diff: cc/quads/list_container.h

Issue 1032803002: Modify ListContainer<T>::Allocate to return a pointer of type void*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 | « no previous file | cc/quads/list_container.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/quads/list_container.h
diff --git a/cc/quads/list_container.h b/cc/quads/list_container.h
index dd313fc8b45bc67d1b7568bea2dd0d0fe81e6a14..7abbe27b9e57fc71de0ea00c37f9a37f2161ce2f 100644
--- a/cc/quads/list_container.h
+++ b/cc/quads/list_container.h
@@ -218,7 +218,7 @@ class CC_EXPORT ListContainer {
private:
// Hands out memory location for an element at the end of data structure.
- BaseElementType* Allocate(size_t size_of_actual_element_in_bytes);
+ void* Allocate(size_t size_of_actual_element_in_bytes);
scoped_ptr<ListContainerCharAllocator> data_;
« no previous file with comments | « no previous file | cc/quads/list_container.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698