| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_IMPORTER_IMPORTER_H_ | 5 #ifndef CHROME_BROWSER_IMPORTER_IMPORTER_H_ |
| 6 #define CHROME_BROWSER_IMPORTER_IMPORTER_H_ | 6 #define CHROME_BROWSER_IMPORTER_IMPORTER_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 BookmarkNode* new_parent, | 183 BookmarkNode* new_parent, |
| 184 int new_index) {} | 184 int new_index) {} |
| 185 virtual void BookmarkNodeAdded(BookmarkModel* model, | 185 virtual void BookmarkNodeAdded(BookmarkModel* model, |
| 186 BookmarkNode* parent, | 186 BookmarkNode* parent, |
| 187 int index) {} | 187 int index) {} |
| 188 virtual void BookmarkNodeRemoved(BookmarkModel* model, | 188 virtual void BookmarkNodeRemoved(BookmarkModel* model, |
| 189 BookmarkNode* parent, | 189 BookmarkNode* parent, |
| 190 int index) {} | 190 int index) {} |
| 191 virtual void BookmarkNodeChanged(BookmarkModel* model, | 191 virtual void BookmarkNodeChanged(BookmarkModel* model, |
| 192 BookmarkNode* node) {} | 192 BookmarkNode* node) {} |
| 193 virtual void BookmarkNodeChildrenReordered(BookmarkModel* model, |
| 194 BookmarkNode* node) {} |
| 193 virtual void BookmarkNodeFavIconLoaded(BookmarkModel* model, | 195 virtual void BookmarkNodeFavIconLoaded(BookmarkModel* model, |
| 194 BookmarkNode* node) {} | 196 BookmarkNode* node) {} |
| 195 | 197 |
| 196 // NotificationObserver method. Called when TemplateURLModel has been loaded. | 198 // NotificationObserver method. Called when TemplateURLModel has been loaded. |
| 197 void Observe(NotificationType type, | 199 void Observe(NotificationType type, |
| 198 const NotificationSource& source, | 200 const NotificationSource& source, |
| 199 const NotificationDetails& details); | 201 const NotificationDetails& details); |
| 200 | 202 |
| 201 // ShowWarningDialog() asks user to close the application that is owning the | 203 // ShowWarningDialog() asks user to close the application that is owning the |
| 202 // lock. They can retry or skip the importing process. | 204 // lock. They can retry or skip the importing process. |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 void StartImportingWithUI(HWND parent_window, | 427 void StartImportingWithUI(HWND parent_window, |
| 426 int16 items, | 428 int16 items, |
| 427 ImporterHost* coordinator, | 429 ImporterHost* coordinator, |
| 428 const ProfileInfo& source_profile, | 430 const ProfileInfo& source_profile, |
| 429 Profile* target_profile, | 431 Profile* target_profile, |
| 430 ImportObserver* observer, | 432 ImportObserver* observer, |
| 431 bool first_run); | 433 bool first_run); |
| 432 #endif | 434 #endif |
| 433 | 435 |
| 434 #endif // CHROME_BROWSER_IMPORTER_IMPORTER_H_ | 436 #endif // CHROME_BROWSER_IMPORTER_IMPORTER_H_ |
| OLD | NEW |