| Index: chrome/browser/importer/profile_writer.cc
|
| diff --git a/chrome/browser/importer/profile_writer.cc b/chrome/browser/importer/profile_writer.cc
|
| index 93d62488c0885eb3cb5dee36d1c8581a1024c9d1..57ddffc5e77226d1c104fab16a4c0e0080cf318a 100644
|
| --- a/chrome/browser/importer/profile_writer.cc
|
| +++ b/chrome/browser/importer/profile_writer.cc
|
| @@ -19,6 +19,12 @@
|
|
|
| using webkit_glue::PasswordForm;
|
|
|
| +ProfileWriter::BookmarkEntry::BookmarkEntry() : in_toolbar(false) {}
|
| +
|
| +ProfileWriter::BookmarkEntry::~BookmarkEntry() {}
|
| +
|
| +ProfileWriter::ProfileWriter(Profile* profile) : profile_(profile) {}
|
| +
|
| bool ProfileWriter::BookmarkModelIsLoaded() const {
|
| return profile_->GetBookmarkModel()->IsLoaded();
|
| }
|
| @@ -277,6 +283,8 @@ void ProfileWriter::ShowBookmarkBar() {
|
| }
|
| }
|
|
|
| +ProfileWriter::~ProfileWriter() {}
|
| +
|
| std::wstring ProfileWriter::GenerateUniqueFolderName(
|
| BookmarkModel* model,
|
| const std::wstring& folder_name) {
|
|
|