summaryrefslogtreecommitdiffstats
path: root/chrome/browser/importer/profile_writer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/importer/profile_writer.cc')
-rw-r--r--chrome/browser/importer/profile_writer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/importer/profile_writer.cc b/chrome/browser/importer/profile_writer.cc
index 8124263..45e05ba 100644
--- a/chrome/browser/importer/profile_writer.cc
+++ b/chrome/browser/importer/profile_writer.cc
@@ -86,7 +86,7 @@ bool ProfileWriter::BookmarkEntry::operator==(
ProfileWriter::ProfileWriter(Profile* profile) : profile_(profile) {}
bool ProfileWriter::BookmarkModelIsLoaded() const {
- return BookmarkModelFactory::GetForProfile(profile_)->IsLoaded();
+ return BookmarkModelFactory::GetForProfile(profile_)->loaded();
}
bool ProfileWriter::TemplateURLServiceIsLoaded() const {
@@ -127,7 +127,7 @@ void ProfileWriter::AddBookmarks(const std::vector<BookmarkEntry>& bookmarks,
return;
BookmarkModel* model = BookmarkModelFactory::GetForProfile(profile_);
- DCHECK(model->IsLoaded());
+ DCHECK(model->loaded());
// If the bookmark bar is currently empty, we should import directly to it.
// Otherwise, we should import everything to a subfolder.