| 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 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 virtual ~GCMClientImpl(); | 79 virtual ~GCMClientImpl(); |
| 80 | 80 |
| 81 // Overridden from GCMClient: | 81 // Overridden from GCMClient: |
| 82 virtual void Initialize( | 82 virtual void Initialize( |
| 83 const checkin_proto::ChromeBuildProto& chrome_build_proto, | 83 const checkin_proto::ChromeBuildProto& chrome_build_proto, |
| 84 const base::FilePath& store_path, | 84 const base::FilePath& store_path, |
| 85 const std::vector<std::string>& account_ids, | 85 const std::vector<std::string>& account_ids, |
| 86 const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner, | 86 const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner, |
| 87 const scoped_refptr<net::URLRequestContextGetter>& | 87 const scoped_refptr<net::URLRequestContextGetter>& |
| 88 url_request_context_getter, | 88 url_request_context_getter, |
| 89 Delegate* delegate) OVERRIDE; | 89 scoped_ptr<Encryptor> encryptor, |
| 90 GCMClient::Delegate* delegate) OVERRIDE; |
| 90 virtual void Load() OVERRIDE; | 91 virtual void Load() OVERRIDE; |
| 91 virtual void Stop() OVERRIDE; | 92 virtual void Stop() OVERRIDE; |
| 92 virtual void CheckOut() OVERRIDE; | 93 virtual void CheckOut() OVERRIDE; |
| 93 virtual void Register(const std::string& app_id, | 94 virtual void Register(const std::string& app_id, |
| 94 const std::vector<std::string>& sender_ids) OVERRIDE; | 95 const std::vector<std::string>& sender_ids) OVERRIDE; |
| 95 virtual void Unregister(const std::string& app_id) OVERRIDE; | 96 virtual void Unregister(const std::string& app_id) OVERRIDE; |
| 96 virtual void Send(const std::string& app_id, | 97 virtual void Send(const std::string& app_id, |
| 97 const std::string& receiver_id, | 98 const std::string& receiver_id, |
| 98 const OutgoingMessage& message) OVERRIDE; | 99 const OutgoingMessage& message) OVERRIDE; |
| 99 virtual void SetRecording(bool recording) OVERRIDE; | 100 virtual void SetRecording(bool recording) OVERRIDE; |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 | 290 |
| 290 // Factory for creating references in callbacks. | 291 // Factory for creating references in callbacks. |
| 291 base::WeakPtrFactory<GCMClientImpl> weak_ptr_factory_; | 292 base::WeakPtrFactory<GCMClientImpl> weak_ptr_factory_; |
| 292 | 293 |
| 293 DISALLOW_COPY_AND_ASSIGN(GCMClientImpl); | 294 DISALLOW_COPY_AND_ASSIGN(GCMClientImpl); |
| 294 }; | 295 }; |
| 295 | 296 |
| 296 } // namespace gcm | 297 } // namespace gcm |
| 297 | 298 |
| 298 #endif // GOOGLE_APIS_GCM_GCM_CLIENT_IMPL_H_ | 299 #endif // GOOGLE_APIS_GCM_GCM_CLIENT_IMPL_H_ |
| OLD | NEW |