| OLD | NEW |
| (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_ | |
| OLD | NEW |