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_PEOPLE_PEOPLE_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_UI_APP_LIST_SEARCH_PEOPLE_PEOPLE_PROVIDER_H_ |
6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_PEOPLE_PEOPLE_PROVIDER_H_ | 6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_PEOPLE_PEOPLE_PROVIDER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/callback_forward.h" | 9 #include "base/callback_forward.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 | 26 |
27 class JSONResponseFetcher; | 27 class JSONResponseFetcher; |
28 class SearchResult; | 28 class SearchResult; |
29 | 29 |
30 // PeopleProvider fetches search results from the web store server. | 30 // PeopleProvider fetches search results from the web store server. |
31 // A "Search in web store" result will be returned if the server does not | 31 // A "Search in web store" result will be returned if the server does not |
32 // return any results. | 32 // return any results. |
33 class PeopleProvider : public WebserviceSearchProvider, | 33 class PeopleProvider : public WebserviceSearchProvider, |
34 public OAuth2TokenService::Consumer { | 34 public OAuth2TokenService::Consumer { |
35 public: | 35 public: |
36 explicit PeopleProvider(Profile* profile); | 36 PeopleProvider(Profile* profile, AppListControllerDelegate* controller); |
37 virtual ~PeopleProvider(); | 37 virtual ~PeopleProvider(); |
38 | 38 |
39 // SearchProvider overrides: | 39 // SearchProvider overrides: |
40 virtual void Start(const base::string16& query) override; | 40 virtual void Start(const base::string16& query) override; |
41 virtual void Stop() override; | 41 virtual void Stop() override; |
42 | 42 |
43 // OAuth2TokenService::Consumer overrides: | 43 // OAuth2TokenService::Consumer overrides: |
44 virtual void OnGetTokenSuccess( | 44 virtual void OnGetTokenSuccess( |
45 const OAuth2TokenService::Request* request, | 45 const OAuth2TokenService::Request* request, |
46 const std::string& access_token, | 46 const std::string& access_token, |
(...skipping 19 matching lines...) Expand all Loading... |
66 | 66 |
67 // Callback for people search results being fetched. | 67 // Callback for people search results being fetched. |
68 void OnPeopleSearchFetched(scoped_ptr<base::DictionaryValue> json); | 68 void OnPeopleSearchFetched(scoped_ptr<base::DictionaryValue> json); |
69 void ProcessPeopleSearchResults(const base::DictionaryValue* json); | 69 void ProcessPeopleSearchResults(const base::DictionaryValue* json); |
70 scoped_ptr<SearchResult> CreateResult(const base::DictionaryValue& dict); | 70 scoped_ptr<SearchResult> CreateResult(const base::DictionaryValue& dict); |
71 | 71 |
72 // Setup the various variables that we override for testing. | 72 // Setup the various variables that we override for testing. |
73 void SetupForTest(const base::Closure& people_search_fetched_callback, | 73 void SetupForTest(const base::Closure& people_search_fetched_callback, |
74 const GURL& people_search_url); | 74 const GURL& people_search_url); |
75 | 75 |
| 76 AppListControllerDelegate* controller_; |
76 scoped_ptr<JSONResponseFetcher> people_search_; | 77 scoped_ptr<JSONResponseFetcher> people_search_; |
77 base::Closure people_search_fetched_callback_; | 78 base::Closure people_search_fetched_callback_; |
78 | 79 |
79 std::string access_token_; | 80 std::string access_token_; |
80 scoped_ptr<OAuth2TokenService::Request> access_token_request_; | 81 scoped_ptr<OAuth2TokenService::Request> access_token_request_; |
81 OAuth2TokenService::ScopeSet oauth2_scope_; | 82 OAuth2TokenService::ScopeSet oauth2_scope_; |
82 | 83 |
83 // The current query. | 84 // The current query. |
84 std::string query_; | 85 std::string query_; |
85 GURL people_search_url_; | 86 GURL people_search_url_; |
86 | 87 |
87 bool skip_request_token_for_test_; | 88 bool skip_request_token_for_test_; |
88 | 89 |
89 DISALLOW_COPY_AND_ASSIGN(PeopleProvider); | 90 DISALLOW_COPY_AND_ASSIGN(PeopleProvider); |
90 }; | 91 }; |
91 | 92 |
92 } // namespace app_list | 93 } // namespace app_list |
93 | 94 |
94 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_PEOPLE_PEOPLE_PROVIDER_H_ | 95 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_PEOPLE_PEOPLE_PROVIDER_H_ |
OLD | NEW |