OLD | NEW |
---|---|
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 COMPONENTS_CRYPTAUTH_CRYPTAUTH_SERVICE_H_ | 5 #ifndef COMPONENTS_CRYPTAUTH_CRYPTAUTH_SERVICE_H_ |
6 #define COMPONENTS_CRYPTAUTH_CRYPTAUTH_SERVICE_H_ | 6 #define COMPONENTS_CRYPTAUTH_CRYPTAUTH_SERVICE_H_ |
7 | 7 |
8 #include <memory> | |
Ryan Hansberry
2017/04/06 15:18:25
Is this necessary?
Kyle Horimoto
2017/04/06 16:51:34
For some reason, it wasn't compiling without this.
| |
9 | |
8 #include "base/macros.h" | 10 #include "base/macros.h" |
9 #include "components/cryptauth/proto/cryptauth_api.pb.h" | 11 #include "components/cryptauth/proto/cryptauth_api.pb.h" |
10 | 12 |
11 namespace cryptauth { | 13 namespace cryptauth { |
12 | 14 |
13 class CryptAuthClientFactory; | 15 class CryptAuthClientFactory; |
14 class CryptAuthDeviceManager; | 16 class CryptAuthDeviceManager; |
15 class CryptAuthEnrollmentManager; | 17 class CryptAuthEnrollmentManager; |
16 class SecureMessageDelegate; | 18 class SecureMessageDelegate; |
17 | 19 |
(...skipping 13 matching lines...) Expand all Loading... | |
31 CryptAuthService() {} | 33 CryptAuthService() {} |
32 virtual ~CryptAuthService() {} | 34 virtual ~CryptAuthService() {} |
33 | 35 |
34 private: | 36 private: |
35 DISALLOW_COPY_AND_ASSIGN(CryptAuthService); | 37 DISALLOW_COPY_AND_ASSIGN(CryptAuthService); |
36 }; | 38 }; |
37 | 39 |
38 } // namespace cryptauth | 40 } // namespace cryptauth |
39 | 41 |
40 #endif // COMPONENTS_CRYPTAUTH_CRYPTAUTH_SERVICE_H_ | 42 #endif // COMPONENTS_CRYPTAUTH_CRYPTAUTH_SERVICE_H_ |
OLD | NEW |