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

Side by Side Diff: chrome/browser/importer/importer_observer.h

Issue 14322002: Remove unused ImportProgressDialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reverted ImportFromBrowser back to returning an int. Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_IMPORTER_IMPORTER_OBSERVER_H_
6 #define CHROME_BROWSER_IMPORTER_IMPORTER_OBSERVER_H_
7
8 // An interface that notifies the consumers that the import process was
9 // completed.
10 class ImporterObserver {
11 public:
12 virtual ~ImporterObserver() {}
13
14 // The import operation was completed successfully.
15 virtual void ImportCompleted() = 0;
16 };
17
18 #endif // CHROME_BROWSER_IMPORTER_IMPORTER_OBSERVER_H_
OLDNEW
« no previous file with comments | « chrome/browser/importer/importer_host.h ('k') | chrome/browser/importer/importer_progress_dialog.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698