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

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

Issue 226893002: Revert of [GCM] Adding periodic checkin controlled by G-services settings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | « google_apis/gcm/engine/gcm_store.h ('k') | google_apis/gcm/engine/gcm_store_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 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 OVERRIDE; 71 OVERRIDE;
72 virtual void RemoveOutgoingMessage(const std::string& persistent_id, 72 virtual void RemoveOutgoingMessage(const std::string& persistent_id,
73 const UpdateCallback& callback) OVERRIDE; 73 const UpdateCallback& callback) OVERRIDE;
74 virtual void RemoveOutgoingMessages(const PersistentIdList& persistent_ids, 74 virtual void RemoveOutgoingMessages(const PersistentIdList& persistent_ids,
75 const UpdateCallback& callback) OVERRIDE; 75 const UpdateCallback& callback) OVERRIDE;
76 76
77 // Sets last device's checkin time. 77 // Sets last device's checkin time.
78 virtual void SetLastCheckinTime(const base::Time& last_checkin_time, 78 virtual void SetLastCheckinTime(const base::Time& last_checkin_time,
79 const UpdateCallback& callback) OVERRIDE; 79 const UpdateCallback& callback) OVERRIDE;
80 80
81 // G-service settings handling.
82 virtual void SetGServicesSettings(
83 const std::map<std::string, std::string>& settings,
84 const std::string& settings_digest,
85 const UpdateCallback& callback) OVERRIDE;
86
87 private: 81 private:
88 typedef std::map<std::string, int> AppIdToMessageCountMap; 82 typedef std::map<std::string, int> AppIdToMessageCountMap;
89 83
90 // Continuation to update the per-app message counts after a load. 84 // Continuation to update the per-app message counts after a load.
91 void LoadContinuation(const LoadCallback& callback, 85 void LoadContinuation(const LoadCallback& callback,
92 scoped_ptr<LoadResult> result); 86 scoped_ptr<LoadResult> result);
93 87
94 // Continuation to update the per-app message counts when adding messages. 88 // Continuation to update the per-app message counts when adding messages.
95 // In particular, if a message fails to add, the message count is decremented. 89 // In particular, if a message fails to add, the message count is decremented.
96 void AddOutgoingMessageContinuation(const UpdateCallback& callback, 90 void AddOutgoingMessageContinuation(const UpdateCallback& callback,
(...skipping 18 matching lines...) Expand all
115 scoped_refptr<base::SequencedTaskRunner> blocking_task_runner_; 109 scoped_refptr<base::SequencedTaskRunner> blocking_task_runner_;
116 110
117 base::WeakPtrFactory<GCMStoreImpl> weak_ptr_factory_; 111 base::WeakPtrFactory<GCMStoreImpl> weak_ptr_factory_;
118 112
119 DISALLOW_COPY_AND_ASSIGN(GCMStoreImpl); 113 DISALLOW_COPY_AND_ASSIGN(GCMStoreImpl);
120 }; 114 };
121 115
122 } // namespace gcm 116 } // namespace gcm
123 117
124 #endif // GOOGLE_APIS_GCM_ENGINE_GCM_STORE_IMPL_H_ 118 #endif // GOOGLE_APIS_GCM_ENGINE_GCM_STORE_IMPL_H_
OLDNEW
« no previous file with comments | « google_apis/gcm/engine/gcm_store.h ('k') | google_apis/gcm/engine/gcm_store_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698