| 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_VIEW_H_ | 5 #ifndef UI_APP_LIST_VIEWS_SEARCH_RESULT_VIEW_H_ |
| 6 #define UI_APP_LIST_SEARCH_RESULT_VIEW_H_ | 6 #define UI_APP_LIST_VIEWS_SEARCH_RESULT_VIEW_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "ui/app_list/search_result_observer.h" | 13 #include "ui/app_list/search_result_observer.h" |
| 14 #include "ui/views/controls/button/custom_button.h" | 14 #include "ui/views/controls/button/custom_button.h" |
| 15 | 15 |
| 16 namespace gfx { | 16 namespace gfx { |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 scoped_ptr<gfx::RenderText> details_text_; | 78 scoped_ptr<gfx::RenderText> details_text_; |
| 79 | 79 |
| 80 // Owned by the views hierarchy. | 80 // Owned by the views hierarchy. |
| 81 std::vector<views::ImageButton*> action_buttons_; | 81 std::vector<views::ImageButton*> action_buttons_; |
| 82 | 82 |
| 83 DISALLOW_COPY_AND_ASSIGN(SearchResultView); | 83 DISALLOW_COPY_AND_ASSIGN(SearchResultView); |
| 84 }; | 84 }; |
| 85 | 85 |
| 86 } // namespace app_list | 86 } // namespace app_list |
| 87 | 87 |
| 88 #endif // UI_APP_LIST_SEARCH_RESULT_VIEW_H_ | 88 #endif // UI_APP_LIST_VIEWS_SEARCH_RESULT_VIEW_H_ |
| OLD | NEW |