| OLD | NEW |
| 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 // TODO(jianli): include needed for obsolete methods that are going to be | 13 // TODO(jianli): include needed for obsolete methods that are going to be |
| 14 // removed soon. | 14 // removed soon. |
| 15 #include "chrome/browser/services/gcm/gcm_driver.h" | 15 #include "components/gcm_driver/gcm_driver.h" |
| 16 #include "components/keyed_service/core/keyed_service.h" | 16 #include "components/keyed_service/core/keyed_service.h" |
| 17 | 17 |
| 18 class Profile; | 18 class Profile; |
| 19 | 19 |
| 20 namespace user_prefs { | 20 namespace user_prefs { |
| 21 class PrefRegistrySyncable; | 21 class PrefRegistrySyncable; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace gcm { | 24 namespace gcm { |
| 25 | 25 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 Profile* profile_; | 78 Profile* profile_; |
| 79 | 79 |
| 80 scoped_ptr<GCMDriver> driver_; | 80 scoped_ptr<GCMDriver> driver_; |
| 81 | 81 |
| 82 DISALLOW_COPY_AND_ASSIGN(GCMProfileService); | 82 DISALLOW_COPY_AND_ASSIGN(GCMProfileService); |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 } // namespace gcm | 85 } // namespace gcm |
| 86 | 86 |
| 87 #endif // CHROME_BROWSER_SERVICES_GCM_GCM_PROFILE_SERVICE_H_ | 87 #endif // CHROME_BROWSER_SERVICES_GCM_GCM_PROFILE_SERVICE_H_ |
| OLD | NEW |