| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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_CONTROLLER_H_ | 5 #ifndef UI_APP_LIST_SEARCH_CONTROLLER_H_ |
| 6 #define UI_APP_LIST_SEARCH_CONTROLLER_H_ | 6 #define UI_APP_LIST_SEARCH_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/memory/scoped_vector.h" | 10 #include "base/memory/scoped_vector.h" |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 SearchBoxModel* search_box_; | 57 SearchBoxModel* search_box_; |
| 58 | 58 |
| 59 bool dispatching_query_; | 59 bool dispatching_query_; |
| 60 Providers providers_; | 60 Providers providers_; |
| 61 scoped_ptr<Mixer> mixer_; | 61 scoped_ptr<Mixer> mixer_; |
| 62 History* history_; // KeyedService, not owned. | 62 History* history_; // KeyedService, not owned. |
| 63 | 63 |
| 64 bool is_voice_query_; | 64 bool is_voice_query_; |
| 65 | 65 |
| 66 base::OneShotTimer<SearchController> stop_timer_; | 66 base::OneShotTimer stop_timer_; |
| 67 | 67 |
| 68 DISALLOW_COPY_AND_ASSIGN(SearchController); | 68 DISALLOW_COPY_AND_ASSIGN(SearchController); |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 } // namespace app_list | 71 } // namespace app_list |
| 72 | 72 |
| 73 #endif // UI_APP_LIST_SEARCH_CONTROLLER_H_ | 73 #endif // UI_APP_LIST_SEARCH_CONTROLLER_H_ |
| OLD | NEW |