| 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 CHROME_BROWSER_UI_APP_LIST_SEARCH_OMNIBOX_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_UI_APP_LIST_SEARCH_OMNIBOX_PROVIDER_H_ |
| 6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_OMNIBOX_PROVIDER_H_ | 6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_OMNIBOX_PROVIDER_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 "chrome/browser/autocomplete/autocomplete_controller_delegate.h" | 10 #include "components/omnibox/autocomplete_controller_delegate.h" |
| 11 #include "ui/app_list/search_provider.h" | 11 #include "ui/app_list/search_provider.h" |
| 12 | 12 |
| 13 class AppListControllerDelegate; | 13 class AppListControllerDelegate; |
| 14 class AutocompleteController; | 14 class AutocompleteController; |
| 15 class AutocompleteResult; | 15 class AutocompleteResult; |
| 16 class Profile; | 16 class Profile; |
| 17 | 17 |
| 18 namespace app_list { | 18 namespace app_list { |
| 19 | 19 |
| 20 // OmniboxProvider wraps AutocompleteController to provide omnibox results. | 20 // OmniboxProvider wraps AutocompleteController to provide omnibox results. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 45 | 45 |
| 46 // Whether the current query is a voice query. | 46 // Whether the current query is a voice query. |
| 47 bool is_voice_query_; | 47 bool is_voice_query_; |
| 48 | 48 |
| 49 DISALLOW_COPY_AND_ASSIGN(OmniboxProvider); | 49 DISALLOW_COPY_AND_ASSIGN(OmniboxProvider); |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 } // namespace app_list | 52 } // namespace app_list |
| 53 | 53 |
| 54 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_OMNIBOX_PROVIDER_H_ | 54 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_OMNIBOX_PROVIDER_H_ |
| OLD | NEW |