- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / importer / importer_list_observer.h
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_LIST_OBSERVER_H_
6 #define CHROME_BROWSER_IMPORTER_IMPORTER_LIST_OBSERVER_H_
7
8 namespace importer {
9
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;
15
16  protected:
17   virtual ~ImporterListObserver() {}
18 };
19
20 }  // namespace importer
21
22 #endif  // CHROME_BROWSER_IMPORTER_IMPORTER_LIST_OBSERVER_H_