| Index: chrome/browser/importer/importer.h
|
| ===================================================================
|
| --- chrome/browser/importer/importer.h (revision 28120)
|
| +++ chrome/browser/importer/importer.h (working copy)
|
| @@ -182,6 +182,7 @@
|
| const BookmarkNode* node) {}
|
| virtual void BookmarkNodeFavIconLoaded(BookmarkModel* model,
|
| const BookmarkNode* node) {}
|
| + virtual void BookmarkModelBeingDeleted(BookmarkModel* model);
|
|
|
| // NotificationObserver method. Called when TemplateURLModel has been loaded.
|
| void Observe(NotificationType type,
|
| @@ -280,6 +281,9 @@
|
| NotificationRegistrar registrar_;
|
| ImporterList importer_list_;
|
|
|
| + // Profile we're importing from.
|
| + Profile* profile_;
|
| +
|
| Observer* observer_;
|
| scoped_refptr<ProfileWriter> writer_;
|
|
|
| @@ -295,6 +299,9 @@
|
| // True if we're waiting for the model to finish loading.
|
| bool waiting_for_bookmarkbar_model_;
|
|
|
| + // Have we installed a listener on the bookmark model?
|
| + bool installed_bookmark_observer_;
|
| +
|
| // True if source profile is readable.
|
| bool is_source_readable_;
|
|
|
|
|