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

Side by Side Diff: trunk/src/google_apis/gcm/gcm_client_impl.h

Issue 281783004: Revert 270226 "Componentize GCM Part 1: create GCM component and..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 7 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
« no previous file with comments | « trunk/src/google_apis/gcm/gcm_client.h ('k') | trunk/src/google_apis/gcm/gcm_client_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 GOOGLE_APIS_GCM_GCM_CLIENT_IMPL_H_ 5 #ifndef GOOGLE_APIS_GCM_GCM_CLIENT_IMPL_H_
6 #define GOOGLE_APIS_GCM_GCM_CLIENT_IMPL_H_ 6 #define GOOGLE_APIS_GCM_GCM_CLIENT_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 virtual ~GCMClientImpl(); 80 virtual ~GCMClientImpl();
81 81
82 // Overridden from GCMClient: 82 // Overridden from GCMClient:
83 virtual void Initialize( 83 virtual void Initialize(
84 const checkin_proto::ChromeBuildProto& chrome_build_proto, 84 const checkin_proto::ChromeBuildProto& chrome_build_proto,
85 const base::FilePath& store_path, 85 const base::FilePath& store_path,
86 const std::vector<std::string>& account_ids, 86 const std::vector<std::string>& account_ids,
87 const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner, 87 const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner,
88 const scoped_refptr<net::URLRequestContextGetter>& 88 const scoped_refptr<net::URLRequestContextGetter>&
89 url_request_context_getter, 89 url_request_context_getter,
90 scoped_ptr<Encryptor> encryptor,
91 GCMClient::Delegate* delegate) OVERRIDE; 90 GCMClient::Delegate* delegate) OVERRIDE;
92 virtual void Start() OVERRIDE; 91 virtual void Start() OVERRIDE;
93 virtual void Stop() OVERRIDE; 92 virtual void Stop() OVERRIDE;
94 virtual void CheckOut() OVERRIDE; 93 virtual void CheckOut() OVERRIDE;
95 virtual void Register(const std::string& app_id, 94 virtual void Register(const std::string& app_id,
96 const std::vector<std::string>& sender_ids) OVERRIDE; 95 const std::vector<std::string>& sender_ids) OVERRIDE;
97 virtual void Unregister(const std::string& app_id) OVERRIDE; 96 virtual void Unregister(const std::string& app_id) OVERRIDE;
98 virtual void Send(const std::string& app_id, 97 virtual void Send(const std::string& app_id,
99 const std::string& receiver_id, 98 const std::string& receiver_id,
100 const OutgoingMessage& message) OVERRIDE; 99 const OutgoingMessage& message) OVERRIDE;
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 291
293 // Factory for creating references in callbacks. 292 // Factory for creating references in callbacks.
294 base::WeakPtrFactory<GCMClientImpl> weak_ptr_factory_; 293 base::WeakPtrFactory<GCMClientImpl> weak_ptr_factory_;
295 294
296 DISALLOW_COPY_AND_ASSIGN(GCMClientImpl); 295 DISALLOW_COPY_AND_ASSIGN(GCMClientImpl);
297 }; 296 };
298 297
299 } // namespace gcm 298 } // namespace gcm
300 299
301 #endif // GOOGLE_APIS_GCM_GCM_CLIENT_IMPL_H_ 300 #endif // GOOGLE_APIS_GCM_GCM_CLIENT_IMPL_H_
OLDNEW
« no previous file with comments | « trunk/src/google_apis/gcm/gcm_client.h ('k') | trunk/src/google_apis/gcm/gcm_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698