OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_NET_STH_DISTRIBUTOR_PROVIDER_H_ |
| 6 #define CHROME_BROWSER_NET_STH_DISTRIBUTOR_PROVIDER_H_ |
| 7 |
| 8 #include <memory> |
| 9 |
| 10 namespace net { |
| 11 |
| 12 namespace ct { |
| 13 class STHDistributor; |
| 14 } // namespace ct |
| 15 |
| 16 } // namespace net |
| 17 |
| 18 namespace chrome_browser_net { |
| 19 |
| 20 void SetGlobalSTHDistributor( |
| 21 std::unique_ptr<net::ct::STHDistributor> distributor); |
| 22 net::ct::STHDistributor* GetGlobalSTHDistributor(); |
| 23 |
| 24 } // namespace chrome_browser_net |
| 25 |
| 26 #endif // CHROME_BROWSER_NET_STH_DISTRIBUTOR_PROVIDER_H_ |
OLD | NEW |