| Index: chrome/browser/ui/app_list/search/people/people_result.h
|
| diff --git a/chrome/browser/ui/app_list/search/people/people_result.h b/chrome/browser/ui/app_list/search/people/people_result.h
|
| index 69ffabef4d8f02c9f6c0ce9435527e03326e4ac6..b84a4b652ff2d452376675e5ecc155f66bde4152 100644
|
| --- a/chrome/browser/ui/app_list/search/people/people_result.h
|
| +++ b/chrome/browser/ui/app_list/search/people/people_result.h
|
| @@ -12,6 +12,7 @@
|
| #include "ui/app_list/search_result.h"
|
| #include "url/gurl.h"
|
|
|
| +class AppListControllerDelegate;
|
| class Profile;
|
|
|
| namespace app_list {
|
| @@ -20,7 +21,9 @@ struct Person;
|
|
|
| class PeopleResult : public SearchResult {
|
| public:
|
| - PeopleResult(Profile* profile, scoped_ptr<Person> person);
|
| + PeopleResult(Profile* profile,
|
| + AppListControllerDelegate* controller,
|
| + scoped_ptr<Person> person);
|
| virtual ~PeopleResult();
|
|
|
| // SearchResult overrides:
|
| @@ -42,6 +45,7 @@ class PeopleResult : public SearchResult {
|
| void RefreshHangoutsExtensionId();
|
|
|
| Profile* profile_;
|
| + AppListControllerDelegate* controller_;
|
| scoped_ptr<Person> person_;
|
|
|
| gfx::ImageSkia image_;
|
|
|