| OLD | NEW |
| 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_GCM_STORE_IMPL_H_ | 5 #ifndef GOOGLE_APIS_GCM_ENGINE_GCM_STORE_IMPL_H_ |
| 6 #define GOOGLE_APIS_GCM_ENGINE_GCM_STORE_IMPL_H_ | 6 #define GOOGLE_APIS_GCM_ENGINE_GCM_STORE_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 OVERRIDE; | 70 OVERRIDE; |
| 71 virtual void RemoveOutgoingMessage(const std::string& persistent_id, | 71 virtual void RemoveOutgoingMessage(const std::string& persistent_id, |
| 72 const UpdateCallback& callback) OVERRIDE; | 72 const UpdateCallback& callback) OVERRIDE; |
| 73 virtual void RemoveOutgoingMessages(const PersistentIdList& persistent_ids, | 73 virtual void RemoveOutgoingMessages(const PersistentIdList& persistent_ids, |
| 74 const UpdateCallback& callback) OVERRIDE; | 74 const UpdateCallback& callback) OVERRIDE; |
| 75 | 75 |
| 76 // Sets last device's checkin time. | 76 // Sets last device's checkin time. |
| 77 virtual void SetLastCheckinTime(const base::Time& last_checkin_time, | 77 virtual void SetLastCheckinTime(const base::Time& last_checkin_time, |
| 78 const UpdateCallback& callback) OVERRIDE; | 78 const UpdateCallback& callback) OVERRIDE; |
| 79 | 79 |
| 80 // G-service settings handling. | |
| 81 virtual void SetGServicesSettings( | |
| 82 const std::map<std::string, std::string>& settings, | |
| 83 const std::string& settings_digest, | |
| 84 const UpdateCallback& callback) OVERRIDE; | |
| 85 | |
| 86 private: | 80 private: |
| 87 typedef std::map<std::string, int> AppIdToMessageCountMap; | 81 typedef std::map<std::string, int> AppIdToMessageCountMap; |
| 88 | 82 |
| 89 // Continuation to update the per-app message counts after a load. | 83 // Continuation to update the per-app message counts after a load. |
| 90 void LoadContinuation(const LoadCallback& callback, | 84 void LoadContinuation(const LoadCallback& callback, |
| 91 scoped_ptr<LoadResult> result); | 85 scoped_ptr<LoadResult> result); |
| 92 | 86 |
| 93 // Continuation to update the per-app message counts when adding messages. | 87 // Continuation to update the per-app message counts when adding messages. |
| 94 // In particular, if a message fails to add, the message count is decremented. | 88 // In particular, if a message fails to add, the message count is decremented. |
| 95 void AddOutgoingMessageContinuation(const UpdateCallback& callback, | 89 void AddOutgoingMessageContinuation(const UpdateCallback& callback, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 114 scoped_refptr<base::SequencedTaskRunner> blocking_task_runner_; | 108 scoped_refptr<base::SequencedTaskRunner> blocking_task_runner_; |
| 115 | 109 |
| 116 base::WeakPtrFactory<GCMStoreImpl> weak_ptr_factory_; | 110 base::WeakPtrFactory<GCMStoreImpl> weak_ptr_factory_; |
| 117 | 111 |
| 118 DISALLOW_COPY_AND_ASSIGN(GCMStoreImpl); | 112 DISALLOW_COPY_AND_ASSIGN(GCMStoreImpl); |
| 119 }; | 113 }; |
| 120 | 114 |
| 121 } // namespace gcm | 115 } // namespace gcm |
| 122 | 116 |
| 123 #endif // GOOGLE_APIS_GCM_ENGINE_GCM_STORE_IMPL_H_ | 117 #endif // GOOGLE_APIS_GCM_ENGINE_GCM_STORE_IMPL_H_ |
| OLD | NEW |