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

Unified Diff: net/http/http_auth_preferences.h

Issue 1851933002: Convert //url to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: IWYU fixup 7 Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/cert/ct_log_verifier_unittest.cc ('k') | net/quic/quic_stream_sequencer_buffer_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_auth_preferences.h
diff --git a/net/http/http_auth_preferences.h b/net/http/http_auth_preferences.h
index eabd13833f48bd0ce45072c4eb50aff0a290edaa..4f3a68befb60e987ef613ac70e26617425b868ff 100644
--- a/net/http/http_auth_preferences.h
+++ b/net/http/http_auth_preferences.h
@@ -5,6 +5,7 @@
#ifndef NET_HTTP_HTTP_AUTH_PREFERENCES_H_
#define NET_HTTP_HTTP_AUTH_PREFERENCES_H_
+#include <memory>
#include <set>
#include <string>
#include <vector>
@@ -76,7 +77,7 @@ class NET_EXPORT HttpAuthPreferences {
// sorts of problems for, for example, active Negotiate transactions.
const std::string gssapi_library_name_;
#endif
- scoped_ptr<URLSecurityManager> security_manager_;
+ std::unique_ptr<URLSecurityManager> security_manager_;
DISALLOW_COPY_AND_ASSIGN(HttpAuthPreferences);
};
« no previous file with comments | « net/cert/ct_log_verifier_unittest.cc ('k') | net/quic/quic_stream_sequencer_buffer_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698