OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef UI_APP_LIST_SEARCH_RESULT_H_ | 5 #ifndef UI_APP_LIST_SEARCH_RESULT_H_ |
6 #define UI_APP_LIST_SEARCH_RESULT_H_ | 6 #define UI_APP_LIST_SEARCH_RESULT_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/observer_list.h" | 11 #include "base/observer_list.h" |
12 #include "base/string16.h" | 12 #include "base/strings/string16.h" |
13 #include "ui/app_list/app_list_export.h" | 13 #include "ui/app_list/app_list_export.h" |
14 #include "ui/base/models/list_model.h" | 14 #include "ui/base/models/list_model.h" |
15 #include "ui/base/range/range.h" | 15 #include "ui/base/range/range.h" |
16 #include "ui/gfx/image/image_skia.h" | 16 #include "ui/gfx/image/image_skia.h" |
17 | 17 |
18 namespace ui { | 18 namespace ui { |
19 class MenuModel; | 19 class MenuModel; |
20 } | 20 } |
21 | 21 |
22 namespace app_list { | 22 namespace app_list { |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 ActionIconSets action_icons_; | 110 ActionIconSets action_icons_; |
111 | 111 |
112 ObserverList<SearchResultObserver> observers_; | 112 ObserverList<SearchResultObserver> observers_; |
113 | 113 |
114 DISALLOW_COPY_AND_ASSIGN(SearchResult); | 114 DISALLOW_COPY_AND_ASSIGN(SearchResult); |
115 }; | 115 }; |
116 | 116 |
117 } // namespace app_list | 117 } // namespace app_list |
118 | 118 |
119 #endif // UI_APP_LIST_SEARCH_RESULT_H_ | 119 #endif // UI_APP_LIST_SEARCH_RESULT_H_ |
OLD | NEW |