diff options
Diffstat (limited to 'chrome/browser/importer/profile_writer.cc')
-rw-r--r-- | chrome/browser/importer/profile_writer.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome/browser/importer/profile_writer.cc b/chrome/browser/importer/profile_writer.cc index 93d6248..57ddffc 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) { |