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

Unified Diff: cc/base/tiling_data_unittest.cc

Issue 13206004: cc: Fix build issues for adding ‘chromium_code’: 1 to cc.gyp and cc_tests.gyp (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « cc/base/scoped_ptr_hash_map.h ('k') | cc/base/worker_pool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/base/tiling_data_unittest.cc
diff --git a/cc/base/tiling_data_unittest.cc b/cc/base/tiling_data_unittest.cc
index ea141addc4b57b45d9fc22f718c4e13242595563..db2d6f215a9a86e2d370fe963f2b3a8502d30236 100644
--- a/cc/base/tiling_data_unittest.cc
+++ b/cc/base/tiling_data_unittest.cc
@@ -954,7 +954,7 @@ void TestIterate(
}
EXPECT_TRUE(found);
}
- EXPECT_EQ(0, expected.size());
+ EXPECT_EQ(0u, expected.size());
}
// Make sure this also works with a difference iterator and an empty ignore.
@@ -973,7 +973,7 @@ void TestIterate(
}
EXPECT_TRUE(found);
}
- EXPECT_EQ(0, expected.size());
+ EXPECT_EQ(0u, expected.size());
}
}
@@ -1078,7 +1078,7 @@ void TestDiff(
}
EXPECT_TRUE(found);
}
- EXPECT_EQ(0, expected.size());
+ EXPECT_EQ(0u, expected.size());
}
TEST(TilingDataTest, DifferenceIteratorIgnoreGeometry) {
« no previous file with comments | « cc/base/scoped_ptr_hash_map.h ('k') | cc/base/worker_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698