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_APP_SEARCH_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_SEARCH_PROVIDER_H_ |
6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_SEARCH_PROVIDER_H_ | 6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_SEARCH_PROVIDER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/scoped_vector.h" | 9 #include "base/memory/scoped_vector.h" |
| 10 #include "base/memory/weak_ptr.h" |
10 #include "base/scoped_observer.h" | 11 #include "base/scoped_observer.h" |
11 #include "extensions/browser/extension_registry_observer.h" | 12 #include "extensions/browser/extension_registry_observer.h" |
12 #include "ui/app_list/search_provider.h" | 13 #include "ui/app_list/search_provider.h" |
13 | 14 |
14 class AppListControllerDelegate; | 15 class AppListControllerDelegate; |
15 class Profile; | 16 class Profile; |
16 | 17 |
17 namespace base { | 18 namespace base { |
18 class Clock; | 19 class Clock; |
19 } | 20 } |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 | 64 |
64 base::string16 query_; | 65 base::string16 query_; |
65 | 66 |
66 ScopedObserver<extensions::ExtensionRegistry, | 67 ScopedObserver<extensions::ExtensionRegistry, |
67 extensions::ExtensionRegistryObserver> | 68 extensions::ExtensionRegistryObserver> |
68 extension_registry_observer_; | 69 extension_registry_observer_; |
69 | 70 |
70 Apps apps_; | 71 Apps apps_; |
71 | 72 |
72 scoped_ptr<base::Clock> clock_; | 73 scoped_ptr<base::Clock> clock_; |
| 74 base::WeakPtrFactory<AppSearchProvider> update_results_factory_; |
73 | 75 |
74 DISALLOW_COPY_AND_ASSIGN(AppSearchProvider); | 76 DISALLOW_COPY_AND_ASSIGN(AppSearchProvider); |
75 }; | 77 }; |
76 | 78 |
77 } // namespace app_list | 79 } // namespace app_list |
78 | 80 |
79 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_SEARCH_PROVIDER_H_ | 81 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_SEARCH_PROVIDER_H_ |
OLD | NEW |