OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 NET_QUIC_CRYPTO_CHANNEL_ID_CHROMIUM_H_ | 5 #ifndef NET_QUIC_CRYPTO_CHANNEL_ID_CHROMIUM_H_ |
6 #define NET_QUIC_CRYPTO_CHANNEL_ID_CHROMIUM_H_ | 6 #define NET_QUIC_CRYPTO_CHANNEL_ID_CHROMIUM_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "net/quic/crypto/channel_id.h" | 12 #include "net/quic/core/crypto/channel_id.h" |
13 | 13 |
14 namespace crypto { | 14 namespace crypto { |
15 class ECPrivateKey; | 15 class ECPrivateKey; |
16 } // namespace crypto | 16 } // namespace crypto |
17 | 17 |
18 namespace net { | 18 namespace net { |
19 | 19 |
20 class ChannelIDService; | 20 class ChannelIDService; |
21 | 21 |
22 class NET_EXPORT_PRIVATE ChannelIDKeyChromium : public ChannelIDKey { | 22 class NET_EXPORT_PRIVATE ChannelIDKeyChromium : public ChannelIDKey { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 | 56 |
57 // The service for retrieving Channel ID keys. | 57 // The service for retrieving Channel ID keys. |
58 ChannelIDService* const channel_id_service_; | 58 ChannelIDService* const channel_id_service_; |
59 | 59 |
60 DISALLOW_COPY_AND_ASSIGN(ChannelIDSourceChromium); | 60 DISALLOW_COPY_AND_ASSIGN(ChannelIDSourceChromium); |
61 }; | 61 }; |
62 | 62 |
63 } // namespace net | 63 } // namespace net |
64 | 64 |
65 #endif // NET_QUIC_CRYPTO_CHANNEL_ID_CHROMIUM_H_ | 65 #endif // NET_QUIC_CRYPTO_CHANNEL_ID_CHROMIUM_H_ |
OLD | NEW |