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

Side by Side Diff: chrome/browser/services/gcm/gcm_profile_service.h

Issue 278493002: Split GCMDriver into platform-specific implementations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 CHROME_BROWSER_SERVICES_GCM_GCM_PROFILE_SERVICE_H_ 5 #ifndef CHROME_BROWSER_SERVICES_GCM_GCM_PROFILE_SERVICE_H_
6 #define CHROME_BROWSER_SERVICES_GCM_GCM_PROFILE_SERVICE_H_ 6 #define CHROME_BROWSER_SERVICES_GCM_GCM_PROFILE_SERVICE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "components/gcm/gcm_client_factory.h"
13 #include "components/gcm/gcm_driver.h" 14 #include "components/gcm/gcm_driver.h"
14 #include "components/keyed_service/core/keyed_service.h" 15 #include "components/keyed_service/core/keyed_service.h"
15 16
16 class Profile; 17 class Profile;
17 18
18 namespace user_prefs { 19 namespace user_prefs {
19 class PrefRegistrySyncable; 20 class PrefRegistrySyncable;
20 } 21 }
21 22
22 namespace gcm { 23 namespace gcm {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 Profile* profile_; 68 Profile* profile_;
68 69
69 scoped_ptr<GCMDriver> driver_; 70 scoped_ptr<GCMDriver> driver_;
70 71
71 DISALLOW_COPY_AND_ASSIGN(GCMProfileService); 72 DISALLOW_COPY_AND_ASSIGN(GCMProfileService);
72 }; 73 };
73 74
74 } // namespace gcm 75 } // namespace gcm
75 76
76 #endif // CHROME_BROWSER_SERVICES_GCM_GCM_PROFILE_SERVICE_H_ 77 #endif // CHROME_BROWSER_SERVICES_GCM_GCM_PROFILE_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698