Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: components/certificate_transparency/log_proof_fetcher.h

Issue 2511973004: components: Cleanup class/struct fwd declarations (Closed)
Patch Set: Rebase on top of current master branch Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 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 COMPONENTS_CERTIFICATE_TRANSPARENCY_LOG_PROOF_FETCHER_H_ 5 #ifndef COMPONENTS_CERTIFICATE_TRANSPARENCY_LOG_PROOF_FETCHER_H_
6 #define COMPONENTS_CERTIFICATE_TRANSPARENCY_LOG_PROOF_FETCHER_H_ 6 #define COMPONENTS_CERTIFICATE_TRANSPARENCY_LOG_PROOF_FETCHER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include <set> 11 #include <set>
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/callback.h" 15 #include "base/callback.h"
16 #include "base/macros.h" 16 #include "base/macros.h"
17 #include "base/memory/weak_ptr.h" 17 #include "base/memory/weak_ptr.h"
18 18
19 namespace base {
20 class Value;
21 } // namespace base
22
23 namespace net { 19 namespace net {
24 20
25 class URLRequestContext; 21 class URLRequestContext;
26 22
27 namespace ct { 23 namespace ct {
28 struct SignedTreeHead; 24 struct SignedTreeHead;
29 } // namespace ct 25 } // namespace ct
30 26
31 } // namespace net 27 } // namespace net
32 28
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 std::set<std::unique_ptr<LogResponseHandler>> inflight_fetches_; 120 std::set<std::unique_ptr<LogResponseHandler>> inflight_fetches_;
125 121
126 base::WeakPtrFactory<LogProofFetcher> weak_factory_; 122 base::WeakPtrFactory<LogProofFetcher> weak_factory_;
127 123
128 DISALLOW_COPY_AND_ASSIGN(LogProofFetcher); 124 DISALLOW_COPY_AND_ASSIGN(LogProofFetcher);
129 }; 125 };
130 126
131 } // namespace certificate_transparency 127 } // namespace certificate_transparency
132 128
133 #endif // COMPONENTS_CERTIFICATE_TRANSPARENCY_LOG_PROOF_FETCHER_H_ 129 #endif // COMPONENTS_CERTIFICATE_TRANSPARENCY_LOG_PROOF_FETCHER_H_
OLDNEW
« no previous file with comments | « components/certificate_reporting/error_reporter.h ('k') | components/component_updater/component_updater_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698