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

Unified Diff: cc/base/spiral_iterator_unittest.cc

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/spiral_iterator.cc ('k') | cc/base/switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/base/spiral_iterator_unittest.cc
diff --git a/cc/base/spiral_iterator_unittest.cc b/cc/base/spiral_iterator_unittest.cc
index 30804ee94232d6e2b8d6bfe5ac9b3128309078f3..bf25b8a89897af6e80fc48975a0b899b1debab44 100644
--- a/cc/base/spiral_iterator_unittest.cc
+++ b/cc/base/spiral_iterator_unittest.cc
@@ -22,7 +22,7 @@ void TestSpiralIterate(int source_line_number,
const std::vector<std::pair<int, int>>& expected) {
std::vector<std::pair<int, int>> actual_forward;
for (TilingData::SpiralDifferenceIterator it(&tiling_data, consider, ignore,
- center);
+ center, false);
it; ++it) {
actual_forward.push_back(it.index());
}
@@ -39,7 +39,7 @@ void TestSpiralIterate(int source_line_number,
std::vector<std::pair<int, int>> actual_reverse;
for (TilingData::ReverseSpiralDifferenceIterator it(&tiling_data, consider,
- ignore, center);
+ ignore, center, false);
it; ++it) {
actual_reverse.push_back(it.index());
}
« no previous file with comments | « cc/base/spiral_iterator.cc ('k') | cc/base/switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698