| 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 "chrome/browser/ui/app_list/search/search_provider.h" | 10 #include "chrome/browser/ui/app_list/search/search_provider.h" |
| 11 #include "content/public/browser/notification_observer.h" | 11 #include "content/public/browser/notification_observer.h" |
| 12 #include "content/public/browser/notification_registrar.h" | 12 #include "content/public/browser/notification_registrar.h" |
| 13 | 13 |
| 14 class AppListControllerDelegate; | 14 class AppListControllerDelegate; |
| 15 class ExtensionService; | |
| 16 class Profile; | 15 class Profile; |
| 17 | 16 |
| 18 namespace extensions { | 17 namespace extensions { |
| 19 class ExtensionSet; | 18 class ExtensionSet; |
| 20 } | 19 } |
| 21 | 20 |
| 22 namespace app_list { | 21 namespace app_list { |
| 23 | 22 |
| 24 class AppSearchProvider : public SearchProvider, | 23 class AppSearchProvider : public SearchProvider, |
| 25 public content::NotificationObserver { | 24 public content::NotificationObserver { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 50 content::NotificationRegistrar registrar_; | 49 content::NotificationRegistrar registrar_; |
| 51 | 50 |
| 52 Apps apps_; | 51 Apps apps_; |
| 53 | 52 |
| 54 DISALLOW_COPY_AND_ASSIGN(AppSearchProvider); | 53 DISALLOW_COPY_AND_ASSIGN(AppSearchProvider); |
| 55 }; | 54 }; |
| 56 | 55 |
| 57 } // namespace app_list | 56 } // namespace app_list |
| 58 | 57 |
| 59 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_SEARCH_PROVIDER_H_ | 58 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_APP_SEARCH_PROVIDER_H_ |
| OLD | NEW |