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

Unified Diff: content/child/request_info.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
Index: content/child/request_info.h
diff --git a/content/child/request_info.h b/content/child/request_info.h
index d808225379efc937095331b13db5dd54155ab251..a5e026f9709d95b179854e4020bf253531dee7e2 100644
--- a/content/child/request_info.h
+++ b/content/child/request_info.h
@@ -7,6 +7,7 @@
#include <stdint.h>
+#include <memory>
#include <string>
#include "base/macros.h"
@@ -121,7 +122,7 @@ struct CONTENT_EXPORT RequestInfo {
blink::WebURLRequest::ExtraData* extra_data;
// Optional, the specific task queue to execute loading tasks on.
- scoped_ptr<blink::WebTaskRunner> loading_web_task_runner;
+ std::unique_ptr<blink::WebTaskRunner> loading_web_task_runner;
// PlzNavigate: the stream URL to request during navigations to get access to
// the ResourceBody that has already been fetched by the browser process.

Powered by Google App Engine
This is Rietveld 408576698