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

Unified Diff: content/browser/time_zone_monitor.cc

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/time_zone_monitor.h ('k') | content/browser/time_zone_monitor_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/time_zone_monitor.cc
diff --git a/content/browser/time_zone_monitor.cc b/content/browser/time_zone_monitor.cc
index 1eb72c6f5c4c56f87a46e5e2168d144085569242..a9a5a9b6c53689695468bb91294d934281e89c67 100644
--- a/content/browser/time_zone_monitor.cc
+++ b/content/browser/time_zone_monitor.cc
@@ -26,13 +26,13 @@ void TimeZoneMonitor::NotifyRenderers() {
#if defined(OS_CHROMEOS)
// On CrOS, ICU's default tz is already set to a new zone. No
// need to redetect it with detectHostTimeZone().
- scoped_ptr<icu::TimeZone> new_zone(icu::TimeZone::createDefault());
+ std::unique_ptr<icu::TimeZone> new_zone(icu::TimeZone::createDefault());
#else
icu::TimeZone* new_zone = icu::TimeZone::detectHostTimeZone();
#if defined(OS_LINUX)
// We get here multiple times on Linux per a single tz change, but
// want to update the ICU default zone and notify renderer only once.
- scoped_ptr<icu::TimeZone> current_zone(icu::TimeZone::createDefault());
+ std::unique_ptr<icu::TimeZone> current_zone(icu::TimeZone::createDefault());
if (*current_zone == *new_zone) {
VLOG(1) << "timezone already updated";
delete new_zone;
« no previous file with comments | « content/browser/time_zone_monitor.h ('k') | content/browser/time_zone_monitor_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698