- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / app_list / search / history_data_observer.h
1 // Copyright 2013 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_UI_APP_LIST_SEARCH_HISTORY_DATA_OBSERVER_H_
6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_HISTORY_DATA_OBSERVER_H_
7
8 namespace app_list {
9
10 class HistoryDataObserver {
11  public:
12   // Invoked when the data is loaded from underlying store.
13   virtual void OnHistoryDataLoadedFromStore() = 0;
14
15  protected:
16   virtual ~HistoryDataObserver() {}
17 };
18
19 }  // namespace app_list
20
21 #endif  // CHROME_BROWSER_UI_APP_LIST_SEARCH_HISTORY_DATA_OBSERVER_H_