| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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_INSTANCE_ID_INSTANCE_ID_PROFILE_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_GCM_INSTANCE_ID_INSTANCE_ID_PROFILE_SERVICE_H_ |
| 6 #define CHROME_BROWSER_SERVICES_GCM_INSTANCE_ID_INSTANCE_ID_PROFILE_SERVICE_H_ | 6 #define CHROME_BROWSER_GCM_INSTANCE_ID_INSTANCE_ID_PROFILE_SERVICE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "components/keyed_service/core/keyed_service.h" | 11 #include "components/keyed_service/core/keyed_service.h" |
| 12 | 12 |
| 13 class Profile; | 13 class Profile; |
| 14 | 14 |
| 15 namespace instance_id { | 15 namespace instance_id { |
| 16 | 16 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 28 InstanceIDDriver* driver() const { return driver_.get(); } | 28 InstanceIDDriver* driver() const { return driver_.get(); } |
| 29 | 29 |
| 30 private: | 30 private: |
| 31 std::unique_ptr<InstanceIDDriver> driver_; | 31 std::unique_ptr<InstanceIDDriver> driver_; |
| 32 | 32 |
| 33 DISALLOW_COPY_AND_ASSIGN(InstanceIDProfileService); | 33 DISALLOW_COPY_AND_ASSIGN(InstanceIDProfileService); |
| 34 }; | 34 }; |
| 35 | 35 |
| 36 } // namespace instance_id | 36 } // namespace instance_id |
| 37 | 37 |
| 38 #endif // CHROME_BROWSER_SERVICES_GCM_INSTANCE_ID_INSTANCE_ID_PROFILE_SERVICE_H
_ | 38 #endif // CHROME_BROWSER_GCM_INSTANCE_ID_INSTANCE_ID_PROFILE_SERVICE_H_ |
| OLD | NEW |