Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Unified Diff: chrome/browser/ui/app_list/search/people/people_result.h

Issue 644863002: Introduce OpenURL to AppListControllerDelegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698