| Index: chrome/browser/ui/app_list/search/search_webstore_result.h
|
| diff --git a/chrome/browser/ui/app_list/search/search_webstore_result.h b/chrome/browser/ui/app_list/search/search_webstore_result.h
|
| index 36feacebb6a5be1d209ea24f3f9e8aae3de730bd..15367c6ca2aa901e9828c424b166a1d8fa963cdf 100644
|
| --- a/chrome/browser/ui/app_list/search/search_webstore_result.h
|
| +++ b/chrome/browser/ui/app_list/search/search_webstore_result.h
|
| @@ -11,6 +11,7 @@
|
| #include "ui/app_list/search_result.h"
|
| #include "url/gurl.h"
|
|
|
| +class AppListControllerDelegate;
|
| class Profile;
|
|
|
| namespace app_list {
|
| @@ -18,7 +19,9 @@ namespace app_list {
|
| // A "search in webstore" result.
|
| class SearchWebstoreResult : public SearchResult {
|
| public:
|
| - SearchWebstoreResult(Profile* profile, const std::string& query);
|
| + SearchWebstoreResult(Profile* profile,
|
| + AppListControllerDelegate* controller,
|
| + const std::string& query);
|
| virtual ~SearchWebstoreResult();
|
|
|
| // SearchResult overrides:
|
| @@ -27,6 +30,7 @@ class SearchWebstoreResult : public SearchResult {
|
|
|
| private:
|
| Profile* profile_;
|
| + AppListControllerDelegate* controller_;
|
| const std::string query_;
|
| GURL launch_url_;
|
|
|
|
|