| Index: chrome/browser/importer/importer_unittest.cc
|
| diff --git a/chrome/browser/importer/importer_unittest.cc b/chrome/browser/importer/importer_unittest.cc
|
| index 3da836178d1d1772f0af351dfcd404f5774046a7..eac9bedcb33066ba896a846cb552fe724b75ec63 100644
|
| --- a/chrome/browser/importer/importer_unittest.cc
|
| +++ b/chrome/browser/importer/importer_unittest.cc
|
| @@ -122,7 +122,7 @@ const int kMaxPathSize = 5;
|
|
|
| typedef struct {
|
| const bool in_toolbar;
|
| - const size_t path_size;
|
| + const int path_size;
|
| const wchar_t* path[kMaxPathSize];
|
| const wchar_t* title;
|
| const char* url;
|
| @@ -184,7 +184,7 @@ bool FindBookmarkEntry(const ProfileWriter::BookmarkEntry& entry,
|
| list[i].url == entry.url.spec() &&
|
| list[i].title == entry.title) {
|
| bool equal = true;
|
| - for (size_t k = 0; k < list[i].path_size; ++k)
|
| + for (int k = 0; k < list[i].path_size; ++k)
|
| if (list[i].path[k] != entry.path[k]) {
|
| equal = false;
|
| break;
|
|
|