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

Side by Side Diff: ui/app_list/search_box_model_observer.h

Issue 10386224: app_list: Add search box and search result view for v2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win_aura Created 8 years, 7 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) 2012 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 UI_APP_LIST_SEARCH_BOX_MODEL_OBSERVER_H_
6 #define UI_APP_LIST_SEARCH_BOX_MODEL_OBSERVER_H_
7 #pragma once
8
9 #include "ui/app_list/app_list_export.h"
10
11 namespace app_list {
12
13 class APP_LIST_EXPORT SearchBoxModelObserver {
14 public:
15 // Invoked when icon is changed.
16 virtual void IconChanged() = 0;
17
18 // Invoked when hint text is changed.
19 virtual void HintTextChanged() = 0;
20
21 // Invoked when selection model is changed.
22 virtual void SelectionModelChanged() = 0;
23
24 // Invoked when text is changed.
25 virtual void TextChanged() = 0;
26
27 protected:
28 virtual ~SearchBoxModelObserver() {}
29 };
30
31 } // namespace app_list
32
33 #endif // UI_APP_LIST_SEARCH_BOX_MODEL_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698