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

Unified Diff: remoting/host/differ_unittest.cc

Issue 2801003: Tighten up compile warnings based to match other chromium sub-projects.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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 | « remoting/host/client_connection.cc ('k') | remoting/host/encoder_verbatim.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/differ_unittest.cc
===================================================================
--- remoting/host/differ_unittest.cc (revision 49812)
+++ remoting/host/differ_unittest.cc (working copy)
@@ -145,7 +145,7 @@
DirtyRects* dirty = new DirtyRects();
differ_->MergeBlocks(dirty);
- ASSERT_EQ(1, dirty->size());
+ ASSERT_EQ(1UL, dirty->size());
CheckDirtyRect(dirty->at(0), x_origin, y_origin, width, height);
}
@@ -272,7 +272,7 @@
DirtyRects* dirty = new DirtyRects();
differ_->MergeBlocks(dirty);
- EXPECT_EQ(0, dirty->size());
+ EXPECT_EQ(0UL, dirty->size());
}
TEST_F(DifferTest, MergeBlocks_SingleBlock) {
@@ -435,7 +435,7 @@
dirty = new DirtyRects();
differ_->MergeBlocks(dirty);
- ASSERT_EQ(3, dirty->size());
+ ASSERT_EQ(3UL, dirty->size());
CheckDirtyRect(dirty->at(0), 1, 0, 1, 1);
CheckDirtyRect(dirty->at(1), 0, 1, 1, 1);
CheckDirtyRect(dirty->at(2), 2, 2, 1, 1);
@@ -456,7 +456,7 @@
dirty = new DirtyRects();
differ_->MergeBlocks(dirty);
- ASSERT_EQ(2, dirty->size());
+ ASSERT_EQ(2UL, dirty->size());
CheckDirtyRect(dirty->at(0), 2, 0, 1, 3);
CheckDirtyRect(dirty->at(1), 0, 1, 2, 2);
@@ -477,7 +477,7 @@
dirty = new DirtyRects();
differ_->MergeBlocks(dirty);
- ASSERT_EQ(3, dirty->size());
+ ASSERT_EQ(3UL, dirty->size());
CheckDirtyRect(dirty->at(0), 0, 1, 1, 2);
CheckDirtyRect(dirty->at(1), 2, 1, 1, 2);
CheckDirtyRect(dirty->at(2), 1, 2, 1, 1);
@@ -500,7 +500,7 @@
dirty = new DirtyRects();
differ_->MergeBlocks(dirty);
- ASSERT_EQ(4, dirty->size());
+ ASSERT_EQ(4UL, dirty->size());
CheckDirtyRect(dirty->at(0), 0, 0, 3, 1);
CheckDirtyRect(dirty->at(1), 0, 1, 1, 2);
CheckDirtyRect(dirty->at(2), 2, 1, 1, 2);
@@ -522,7 +522,7 @@
dirty = new DirtyRects();
differ_->MergeBlocks(dirty);
- ASSERT_EQ(2, dirty->size());
+ ASSERT_EQ(2UL, dirty->size());
CheckDirtyRect(dirty->at(0), 0, 0, 2, 2);
CheckDirtyRect(dirty->at(1), 1, 2, 1, 1);
}
« no previous file with comments | « remoting/host/client_connection.cc ('k') | remoting/host/encoder_verbatim.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698