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

Unified Diff: content/browser/time_zone_monitor.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
« no previous file with comments | « content/browser/streams/stream_url_request_job_unittest.cc ('k') | content/browser/time_zone_monitor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/time_zone_monitor.h
diff --git a/content/browser/time_zone_monitor.h b/content/browser/time_zone_monitor.h
index 6fff155e766ed04f52889403d4b0cbaeed1d35f8..95f70a39317cda74739e85d439a1c5a207f97192 100644
--- a/content/browser/time_zone_monitor.h
+++ b/content/browser/time_zone_monitor.h
@@ -5,8 +5,9 @@
#ifndef CONTENT_BROWSER_TIME_ZONE_MONITOR_H_
#define CONTENT_BROWSER_TIME_ZONE_MONITOR_H_
+#include <memory>
+
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
namespace content {
@@ -31,7 +32,7 @@ class TimeZoneMonitor {
public:
// Returns a new TimeZoneMonitor object (likely a subclass) specific to the
// platform.
- static scoped_ptr<TimeZoneMonitor> Create();
+ static std::unique_ptr<TimeZoneMonitor> Create();
virtual ~TimeZoneMonitor();
« no previous file with comments | « content/browser/streams/stream_url_request_job_unittest.cc ('k') | content/browser/time_zone_monitor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698