Index: chrome/browser/importer/importer_unittest.cc |
diff --git a/chrome/browser/importer/importer_unittest.cc b/chrome/browser/importer/importer_unittest.cc |
index 6764ef62d29c79ea14eaa1c1304f789706e83e4d..424f21eb1c33dffa70012b5fcd4d1c05a89c91e2 100644 |
--- a/chrome/browser/importer/importer_unittest.cc |
+++ b/chrome/browser/importer/importer_unittest.cc |
@@ -238,9 +238,9 @@ class TestObserver : public ProfileWriter, |
EXPECT_EQ(history::SOURCE_IE_IMPORTED, visit_source); |
} |
- virtual void AddBookmarkEntry(const std::vector<BookmarkEntry>& bookmark, |
- const string16& first_folder_name, |
- int options) { |
+ virtual void AddBookmarks(const std::vector<BookmarkEntry>& bookmark, |
+ const string16& first_folder_name, |
+ int options) OVERRIDE { |
// Importer should import the IE Favorites folder the same as the list. |
for (size_t i = 0; i < bookmark.size(); ++i) { |
if (FindBookmarkEntry(bookmark[i], kIEBookmarks, |
@@ -604,9 +604,9 @@ class FirefoxObserver : public ProfileWriter, |
++history_count_; |
} |
- virtual void AddBookmarkEntry(const std::vector<BookmarkEntry>& bookmark, |
- const string16& first_folder_name, |
- int options) { |
+ virtual void AddBookmarks(const std::vector<BookmarkEntry>& bookmark, |
+ const string16& first_folder_name, |
+ int options) OVERRIDE { |
for (size_t i = 0; i < bookmark.size(); ++i) { |
if (FindBookmarkEntry(bookmark[i], kFirefox2Bookmarks, |
arraysize(kFirefox2Bookmarks))) |
@@ -814,9 +814,9 @@ class Firefox3Observer : public ProfileWriter, |
++history_count_; |
} |
- virtual void AddBookmarkEntry(const std::vector<BookmarkEntry>& bookmark, |
- const string16& first_folder_name, |
- int options) { |
+ virtual void AddBookmarks(const std::vector<BookmarkEntry>& bookmark, |
+ const string16& first_folder_name, |
+ int options) OVERRIDE { |
for (size_t i = 0; i < bookmark.size(); ++i) { |
if (FindBookmarkEntry(bookmark[i], kFirefox3Bookmarks, |
arraysize(kFirefox3Bookmarks))) |