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

Side by Side Diff: chrome/browser/google_apis/gdata_contacts_requests.h

Issue 63923002: net: Use SequencedTaskRunner for URLFetcherResponseWriter (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add include Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_GOOGLE_APIS_GDATA_CONTACTS_REQUESTS_H_ 5 #ifndef CHROME_BROWSER_GOOGLE_APIS_GDATA_CONTACTS_REQUESTS_H_
6 #define CHROME_BROWSER_GOOGLE_APIS_GDATA_CONTACTS_REQUESTS_H_ 6 #define CHROME_BROWSER_GOOGLE_APIS_GDATA_CONTACTS_REQUESTS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/time/time.h"
10 #include "chrome/browser/google_apis/base_requests.h" 11 #include "chrome/browser/google_apis/base_requests.h"
11 12
12 namespace google_apis { 13 namespace google_apis {
13 14
14 //========================== GetContactGroupsRequest ========================= 15 //========================== GetContactGroupsRequest =========================
15 16
16 // This class fetches a JSON feed containing a user's contact groups. 17 // This class fetches a JSON feed containing a user's contact groups.
17 class GetContactGroupsRequest : public GetDataRequest { 18 class GetContactGroupsRequest : public GetDataRequest {
18 public: 19 public:
19 GetContactGroupsRequest(RequestSender* runner, 20 GetContactGroupsRequest(RequestSender* runner,
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 93
93 // Callback to which the photo data is passed. 94 // Callback to which the photo data is passed.
94 GetContentCallback callback_; 95 GetContentCallback callback_;
95 96
96 DISALLOW_COPY_AND_ASSIGN(GetContactPhotoRequest); 97 DISALLOW_COPY_AND_ASSIGN(GetContactPhotoRequest);
97 }; 98 };
98 99
99 } // namespace google_apis 100 } // namespace google_apis
100 101
101 #endif // CHROME_BROWSER_GOOGLE_APIS_GDATA_CONTACTS_REQUESTS_H_ 102 #endif // CHROME_BROWSER_GOOGLE_APIS_GDATA_CONTACTS_REQUESTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698