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

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

Issue 621823004: Simplifies the structure of app_list search a bit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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_provider.h
diff --git a/chrome/browser/ui/app_list/search/people/people_provider.h b/chrome/browser/ui/app_list/search/people/people_provider.h
index 9e0ade2ea1cf41f226d6adb8452e945128eae903..2996b9307fd266d5b6b40acef41a31570296ff57 100644
--- a/chrome/browser/ui/app_list/search/people/people_provider.h
+++ b/chrome/browser/ui/app_list/search/people/people_provider.h
@@ -24,8 +24,8 @@ namespace test {
class PeopleProviderTest;
}
-class ChromeSearchResult;
class JSONResponseFetcher;
+class SearchResult;
// PeopleProvider fetches search results from the web store server.
// A "Search in web store" result will be returned if the server does not
@@ -67,8 +67,7 @@ class PeopleProvider : public WebserviceSearchProvider,
// Callback for people search results being fetched.
void OnPeopleSearchFetched(scoped_ptr<base::DictionaryValue> json);
void ProcessPeopleSearchResults(const base::DictionaryValue* json);
- scoped_ptr<ChromeSearchResult> CreateResult(
- const base::DictionaryValue& dict);
+ scoped_ptr<SearchResult> CreateResult(const base::DictionaryValue& dict);
// Setup the various variables that we override for testing.
void SetupForTest(const base::Closure& people_search_fetched_callback,

Powered by Google App Engine
This is Rietveld 408576698