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

Unified Diff: cc/base/spiral_iterator.h

Issue 2503303002: ps test.
Patch Set: rebase Created 4 years, 1 month 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/base/reverse_spiral_iterator.cc ('k') | cc/base/spiral_iterator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/base/spiral_iterator.h
diff --git a/cc/base/spiral_iterator.h b/cc/base/spiral_iterator.h
index d30176d0037d64833da90abf8021c060b5e80cc1..01b1f08f77f7d463264d71fd3b8d1c826db1f43c 100644
--- a/cc/base/spiral_iterator.h
+++ b/cc/base/spiral_iterator.h
@@ -33,8 +33,12 @@ class CC_EXPORT SpiralIterator {
SpiralIterator(const IndexRect& around_index_rect,
const IndexRect& consider_index_rect,
const IndexRect& ignore_index_rect);
+ SpiralIterator(const SpiralIterator& other);
+ SpiralIterator(SpiralIterator&& other);
+ ~SpiralIterator();
- ~SpiralIterator() = default;
+ SpiralIterator& operator=(const SpiralIterator& other);
+ SpiralIterator& operator=(SpiralIterator&& other);
operator bool() const;
SpiralIterator& operator++();
« no previous file with comments | « cc/base/reverse_spiral_iterator.cc ('k') | cc/base/spiral_iterator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698