| Index: third_party/WebKit/Source/core/editing/InputMethodControllerTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/InputMethodControllerTest.cpp b/third_party/WebKit/Source/core/editing/InputMethodControllerTest.cpp
|
| index fd5cc2adac360f68a24e7040339fe9a1ba02c322..b3b4e1b537ff478bee217e00ef5e448e7beefa16 100644
|
| --- a/third_party/WebKit/Source/core/editing/InputMethodControllerTest.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/InputMethodControllerTest.cpp
|
| @@ -175,8 +175,8 @@ TEST_F(InputMethodControllerTest, SetCompositionFromExistingText) {
|
| controller().setCompositionFromExistingText(underlines, 0, 5);
|
|
|
| Range* range = controller().compositionRange();
|
| - EXPECT_EQ(0, range->startOffset());
|
| - EXPECT_EQ(5, range->endOffset());
|
| + EXPECT_EQ(0u, range->startOffset());
|
| + EXPECT_EQ(5u, range->endOffset());
|
|
|
| PlainTextRange plainTextRange(PlainTextRange::create(*div, *range));
|
| EXPECT_EQ(0u, plainTextRange.start());
|
| @@ -361,8 +361,8 @@ TEST_F(InputMethodControllerTest,
|
| controller().setCompositionFromExistingText(underlines, 0, 5);
|
|
|
| Range* range = controller().compositionRange();
|
| - EXPECT_EQ(1, range->startOffset());
|
| - EXPECT_EQ(6, range->endOffset());
|
| + EXPECT_EQ(1u, range->startOffset());
|
| + EXPECT_EQ(6u, range->endOffset());
|
|
|
| PlainTextRange plainTextRange(PlainTextRange::create(*div, *range));
|
| EXPECT_EQ(0u, plainTextRange.start());
|
|
|