Download build archive (if exists) from cloud for given revision and perform bisect.
[chromium-blink-merge.git] / chrome / browser / importer / importer_list_observer.h
blobb97fb14791e7e9f82462eb93e177436118f56821
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.
5 #ifndef CHROME_BROWSER_IMPORTER_IMPORTER_LIST_OBSERVER_H_
6 #define CHROME_BROWSER_IMPORTER_IMPORTER_LIST_OBSERVER_H_
8 namespace importer {
10 // Any class calling DetectSourceProfiles() must implement this interface in
11 // order to be called back when the source profiles are loaded.
12 class ImporterListObserver {
13 public:
14 virtual void OnSourceProfilesLoaded() = 0;
16 protected:
17 virtual ~ImporterListObserver() {}
20 } // namespace importer
22 #endif // CHROME_BROWSER_IMPORTER_IMPORTER_LIST_OBSERVER_H_