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

Side by Side Diff: google_apis/gcm/engine/checkin_request.h

Issue 215363007: [GCM] Adding basic G-services handling (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 GOOGLE_APIS_GCM_ENGINE_CHECKIN_REQUEST_H_ 5 #ifndef GOOGLE_APIS_GCM_ENGINE_CHECKIN_REQUEST_H_
6 #define GOOGLE_APIS_GCM_ENGINE_CHECKIN_REQUEST_H_ 6 #define GOOGLE_APIS_GCM_ENGINE_CHECKIN_REQUEST_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/callback.h" 12 #include "base/callback.h"
13 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
14 #include "google_apis/gcm/base/gcm_export.h" 14 #include "google_apis/gcm/base/gcm_export.h"
15 #include "google_apis/gcm/protocol/android_checkin.pb.h" 15 #include "google_apis/gcm/protocol/checkin.pb.h"
16 #include "net/base/backoff_entry.h" 16 #include "net/base/backoff_entry.h"
17 #include "net/url_request/url_fetcher_delegate.h" 17 #include "net/url_request/url_fetcher_delegate.h"
18 18
19 namespace net { 19 namespace net {
20 class URLRequestContextGetter; 20 class URLRequestContextGetter;
21 } 21 }
22 22
23 namespace gcm { 23 namespace gcm {
24 24
25 // Enables making check-in requests with the GCM infrastructure. When called 25 // Enables making check-in requests with the GCM infrastructure. When called
26 // with android_id and security_token both set to 0 it is an initial check-in 26 // with android_id and security_token both set to 0 it is an initial check-in
27 // used to obtain credentials. These should be persisted and used for subsequent 27 // used to obtain credentials. These should be persisted and used for subsequent
28 // check-ins. 28 // check-ins.
29 class GCM_EXPORT CheckinRequest : public net::URLFetcherDelegate { 29 class GCM_EXPORT CheckinRequest : public net::URLFetcherDelegate {
30 public: 30 public:
31 // A callback function for the checkin request, accepting |android_id| and 31 // A callback function for the checkin request, accepting |android_id| and
32 // |security_token|. 32 // |security_token|.
fgorski 2014/03/28 14:30:51 update doc
fgorski 2014/03/29 01:09:32 Done.
33 typedef base::Callback<void(uint64 android_id, uint64 security_token)> 33 typedef base::Callback<void(const checkin_proto::AndroidCheckinResponse&
34 CheckinRequestCallback; 34 checkin_response)> CheckinRequestCallback;
35 35
36 CheckinRequest(const CheckinRequestCallback& callback, 36 CheckinRequest(const CheckinRequestCallback& callback,
37 const net::BackoffEntry::Policy& backoff_policy, 37 const net::BackoffEntry::Policy& backoff_policy,
38 const checkin_proto::ChromeBuildProto& chrome_build_proto, 38 const checkin_proto::ChromeBuildProto& chrome_build_proto,
39 uint64 android_id, 39 uint64 android_id,
40 uint64 security_token, 40 uint64 security_token,
41 const std::vector<std::string>& account_ids, 41 const std::vector<std::string>& account_ids,
42 net::URLRequestContextGetter* request_context_getter); 42 net::URLRequestContextGetter* request_context_getter);
43 virtual ~CheckinRequest(); 43 virtual ~CheckinRequest();
44 44
(...skipping 18 matching lines...) Expand all
63 const std::vector<std::string> account_ids_; 63 const std::vector<std::string> account_ids_;
64 64
65 base::WeakPtrFactory<CheckinRequest> weak_ptr_factory_; 65 base::WeakPtrFactory<CheckinRequest> weak_ptr_factory_;
66 66
67 DISALLOW_COPY_AND_ASSIGN(CheckinRequest); 67 DISALLOW_COPY_AND_ASSIGN(CheckinRequest);
68 }; 68 };
69 69
70 } // namespace gcm 70 } // namespace gcm
71 71
72 #endif // GOOGLE_APIS_GCM_ENGINE_CHECKIN_REQUEST_H_ 72 #endif // GOOGLE_APIS_GCM_ENGINE_CHECKIN_REQUEST_H_
OLDNEW
« no previous file with comments | « no previous file | google_apis/gcm/engine/checkin_request.cc » ('j') | google_apis/gcm/engine/checkin_request.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698