Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(378)

Unified Diff: chrome/browser/importer/importer_host.h

Issue 10690151: Move implementation of BrowserList onto an inner, instantiatable class, BrowserListImpl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/importer/importer_host.h
===================================================================
--- chrome/browser/importer/importer_host.h (revision 146126)
+++ chrome/browser/importer/importer_host.h (working copy)
@@ -14,7 +14,7 @@
#include "chrome/browser/bookmarks/base_bookmark_model_observer.h"
#include "chrome/browser/importer/importer_data_types.h"
#include "chrome/browser/importer/profile_writer.h"
-#include "chrome/browser/ui/browser_list.h"
+#include "chrome/browser/ui/browser_list_observer.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "ui/gfx/native_widget_types.h"
@@ -33,7 +33,7 @@
class ImporterHost : public base::RefCountedThreadSafe<ImporterHost>,
public BaseBookmarkModelObserver,
public content::NotificationObserver,
- public BrowserList::Observer {
+ public chrome::BrowserListObserver {
public:
ImporterHost();
@@ -143,7 +143,7 @@
const content::NotificationSource& source,
const content::NotificationDetails& details) OVERRIDE;
- // BrowserList::Observer
+ // chrome::BrowserListObserver
virtual void OnBrowserRemoved(Browser* browser) OVERRIDE;
// The task is the process of importing settings from other browsers.

Powered by Google App Engine
This is Rietveld 408576698