| Index: chrome/browser/history/query_parser_unittest.cc
|
| diff --git a/chrome/browser/history/query_parser_unittest.cc b/chrome/browser/history/query_parser_unittest.cc
|
| index 3f75989db8edf9448e3c1b9f358f6778b0f48697..25d4f4e0cc18d1fd68b6edb21a4fc6bc4eb20538 100644
|
| --- a/chrome/browser/history/query_parser_unittest.cc
|
| +++ b/chrome/browser/history/query_parser_unittest.cc
|
| @@ -88,10 +88,10 @@ TEST_F(QueryParserTest, ParseQueryNodesAndMatch) {
|
| const std::wstring query;
|
| const std::wstring text;
|
| const bool matches;
|
| - const int m1_start;
|
| - const int m1_end;
|
| - const int m2_start;
|
| - const int m2_end;
|
| + const size_t m1_start;
|
| + const size_t m1_end;
|
| + const size_t m2_start;
|
| + const size_t m2_end;
|
| } data[] = {
|
| { L"foo foo", L"foo", true, 0, 3, 0, 0 },
|
| { L"foo fooey", L"fooey", true, 0, 5, 0, 0 },
|
|
|