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

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

Issue 1921973002: Convert //components/[a-e]* from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 7 months 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/scoped_ptr.h"
18 #include "base/memory/weak_ptr.h" 17 #include "base/memory/weak_ptr.h"
19 18
20 namespace base { 19 namespace base {
21 class Value; 20 class Value;
22 } // namespace base 21 } // namespace base
23 22
24 namespace net { 23 namespace net {
25 24
26 class URLRequestContext; 25 class URLRequestContext;
27 26
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 std::set<LogResponseHandler*> inflight_fetches_; 123 std::set<LogResponseHandler*> inflight_fetches_;
125 124
126 base::WeakPtrFactory<LogProofFetcher> weak_factory_; 125 base::WeakPtrFactory<LogProofFetcher> weak_factory_;
127 126
128 DISALLOW_COPY_AND_ASSIGN(LogProofFetcher); 127 DISALLOW_COPY_AND_ASSIGN(LogProofFetcher);
129 }; 128 };
130 129
131 } // namespace certificate_transparency 130 } // namespace certificate_transparency
132 131
133 #endif // COMPONENTS_CERTIFICATE_TRANSPARENCY_LOG_PROOF_FETCHER_H_ 132 #endif // COMPONENTS_CERTIFICATE_TRANSPARENCY_LOG_PROOF_FETCHER_H_
OLDNEW
« no previous file with comments | « components/certificate_reporting/error_reporter_unittest.cc ('k') | components/certificate_transparency/log_proof_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698