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

Unified Diff: android_webview/browser/net/aw_url_request_job_factory.cc

Issue 1852513003: Convert //android_webview to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git is hard 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
Index: android_webview/browser/net/aw_url_request_job_factory.cc
diff --git a/android_webview/browser/net/aw_url_request_job_factory.cc b/android_webview/browser/net/aw_url_request_job_factory.cc
index 1a38655366b44b25630c4555ab0e057e98f74803..a13a8cbe3cd592c146ffa6c7509fd670c28743e5 100644
--- a/android_webview/browser/net/aw_url_request_job_factory.cc
+++ b/android_webview/browser/net/aw_url_request_job_factory.cc
@@ -75,7 +75,7 @@ net::URLRequestJob* AwURLRequestJobFactory::MaybeInterceptResponse(
bool AwURLRequestJobFactory::SetProtocolHandler(
const std::string& scheme,
- scoped_ptr<ProtocolHandler> protocol_handler) {
+ std::unique_ptr<ProtocolHandler> protocol_handler) {
return next_factory_->SetProtocolHandler(scheme, std::move(protocol_handler));
}
« no previous file with comments | « android_webview/browser/net/aw_url_request_job_factory.h ('k') | android_webview/browser/net/aw_web_resource_response.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698