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

Side by Side Diff: google_apis/gcm/gcm_activity.cc

Issue 310973002: Move GCMClient related files to gcm_driver component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync Created 6 years, 6 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/gcm_activity.h ('k') | google_apis/gcm/gcm_client.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "google_apis/gcm/gcm_activity.h"
6
7 namespace gcm {
8
9 Activity::Activity()
10 : time(base::Time::Now()) {
11 }
12
13 Activity::~Activity() {
14 }
15
16 CheckinActivity::CheckinActivity() {
17 }
18
19 CheckinActivity::~CheckinActivity() {
20 }
21
22 ConnectionActivity::ConnectionActivity() {
23 }
24
25 ConnectionActivity::~ConnectionActivity() {
26 }
27
28 RegistrationActivity::RegistrationActivity() {
29 }
30
31 RegistrationActivity::~RegistrationActivity() {
32 }
33
34 ReceivingActivity::ReceivingActivity()
35 : message_byte_size(0) {
36 }
37
38 ReceivingActivity::~ReceivingActivity() {
39 }
40
41 SendingActivity::SendingActivity() {
42 }
43
44 SendingActivity::~SendingActivity() {
45 }
46
47 RecordedActivities::RecordedActivities() {
48 }
49
50 RecordedActivities::~RecordedActivities() {
51 }
52
53 } // namespace gcm
OLDNEW
« no previous file with comments | « google_apis/gcm/gcm_activity.h ('k') | google_apis/gcm/gcm_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698