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

Unified Diff: cc/quads/list_container.h

Issue 683113005: Update from chromium https://crrev.com/302282 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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 | « cc/output/shader.cc ('k') | 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 24c24ac86ddbb9e11199ab689d0bbb5b3e81d505..a61a6e0cb3d2f1701174ac6a9a9b0ff36b1000cd 100644
--- a/cc/quads/list_container.h
+++ b/cc/quads/list_container.h
@@ -78,9 +78,9 @@ class CC_EXPORT ListContainer {
size_t index);
~Iterator();
BaseElementType* operator->() const;
- BaseElementType& operator*() const;
+ BaseElementType* operator*() const;
Iterator operator++(int unused_post_increment);
- Iterator operator++();
+ Iterator& operator++();
size_t index() const;
@@ -103,9 +103,9 @@ class CC_EXPORT ListContainer {
ConstIterator(const Iterator& other); // NOLINT
~ConstIterator();
const BaseElementType* operator->() const;
- const BaseElementType& operator*() const;
+ const BaseElementType* operator*() const;
ConstIterator operator++(int unused_post_increment);
- ConstIterator operator++();
+ ConstIterator& operator++();
size_t index() const;
@@ -128,9 +128,9 @@ class CC_EXPORT ListContainer {
size_t index);
~ReverseIterator();
BaseElementType* operator->() const;
- BaseElementType& operator*() const;
+ BaseElementType* operator*() const;
ReverseIterator operator++(int unused_post_increment);
- ReverseIterator operator++();
+ ReverseIterator& operator++();
size_t index() const;
@@ -154,9 +154,9 @@ class CC_EXPORT ListContainer {
ConstReverseIterator(const ReverseIterator& other); // NOLINT
~ConstReverseIterator();
const BaseElementType* operator->() const;
- const BaseElementType& operator*() const;
+ const BaseElementType* operator*() const;
ConstReverseIterator operator++(int unused_post_increment);
- ConstReverseIterator operator++();
+ ConstReverseIterator& operator++();
size_t index() const;
« no previous file with comments | « cc/output/shader.cc ('k') | cc/quads/list_container.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698