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

Unified Diff: content/browser/tracing/tracing_ui.h

Issue 1874893002: Convert //content/browser from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/browser/tracing/tracing_ui.h
diff --git a/content/browser/tracing/tracing_ui.h b/content/browser/tracing/tracing_ui.h
index 4e65de11a7aa7b5e7e0bc9cf3e3267f84f6ec4eb..fdbe0c197f9a7807c6a104e1def09694d7f69cc6 100644
--- a/content/browser/tracing/tracing_ui.h
+++ b/content/browser/tracing/tracing_ui.h
@@ -33,8 +33,8 @@ class CONTENT_EXPORT TracingUI : public WebUIController {
void DoUpload(const base::ListValue* args);
void DoUploadBase64Encoded(const base::ListValue* args);
- scoped_ptr<TracingDelegate> delegate_;
- scoped_ptr<TraceUploader> trace_uploader_;
+ std::unique_ptr<TracingDelegate> delegate_;
+ std::unique_ptr<TraceUploader> trace_uploader_;
base::WeakPtrFactory<TracingUI> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(TracingUI);
« no previous file with comments | « content/browser/tracing/tracing_controller_impl_data_sinks.cc ('k') | content/browser/tracing/tracing_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698