Index: chrome/browser/bookmarks/bookmark_test_helpers.cc |
diff --git a/chrome/browser/bookmarks/bookmark_test_helpers.cc b/chrome/browser/bookmarks/bookmark_test_helpers.cc |
index 1638bcffd3b6bba984e2e8adff1a38967d735927..424febdbce33c9c6b43fbb29991db2e62e44ba97 100644 |
--- a/chrome/browser/bookmarks/bookmark_test_helpers.cc |
+++ b/chrome/browser/bookmarks/bookmark_test_helpers.cc |
@@ -10,7 +10,6 @@ |
#include "base/logging.h" |
#include "base/run_loop.h" |
#include "base/strings/utf_string_conversions.h" |
-#include "chrome/browser/bookmarks/bookmark_model_factory.h" |
#include "components/bookmarks/core/browser/base_bookmark_model_observer.h" |
#include "components/bookmarks/core/browser/bookmark_model.h" |
#include "url/gurl.h" |
@@ -110,10 +109,6 @@ void WaitForBookmarkModelToLoad(BookmarkModel* model) { |
DCHECK(model->loaded()); |
} |
-void WaitForBookmarkModelToLoad(Profile* profile) { |
- WaitForBookmarkModelToLoad(BookmarkModelFactory::GetForProfile(profile)); |
-} |
- |
std::string ModelStringFromNode(const BookmarkNode* node) { |
// Since the children of the node are not available as a vector, |
// we'll just have to do it the hard way. |