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 CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_CRYPTO_VERIFY_IMPL_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_CRYPTO_VERIFY_IMPL_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_CRYPTO_VERIFY_IMPL_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_CRYPTO_VERIFY_IMPL_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "chrome/browser/extensions/api/networking_private/networking_private_de
legate.h" | 10 #include "extensions/browser/api/networking_private/networking_private_delegate.
h" |
11 | 11 |
12 namespace base { | 12 namespace base { |
13 class SequencedTaskRunner; | 13 class SequencedTaskRunner; |
14 } | 14 } |
15 | 15 |
16 namespace extensions { | 16 namespace extensions { |
17 | 17 |
18 // Implementation of NetworkingPrivateDelegate::VerifyDelegate using | 18 // Implementation of NetworkingPrivateDelegate::VerifyDelegate using |
19 // networking_private_crypto. | 19 // networking_private_crypto. |
20 class CryptoVerifyImpl : public NetworkingPrivateDelegate::VerifyDelegate { | 20 class CryptoVerifyImpl : public NetworkingPrivateDelegate::VerifyDelegate { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 private: | 54 private: |
55 // Task runner for blocking tasks. | 55 // Task runner for blocking tasks. |
56 scoped_refptr<base::SequencedTaskRunner> blocking_pool_task_runner_; | 56 scoped_refptr<base::SequencedTaskRunner> blocking_pool_task_runner_; |
57 | 57 |
58 DISALLOW_COPY_AND_ASSIGN(CryptoVerifyImpl); | 58 DISALLOW_COPY_AND_ASSIGN(CryptoVerifyImpl); |
59 }; | 59 }; |
60 | 60 |
61 } // namespace extensions | 61 } // namespace extensions |
62 | 62 |
63 #endif // CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_CRYPTO_VERIFY_IMPL_H
_ | 63 #endif // CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_CRYPTO_VERIFY_IMPL_H
_ |
OLD | NEW |