| Index: chrome/browser/chromeos/system/timezone_util.h
|
| diff --git a/chrome/browser/chromeos/system/timezone_util.h b/chrome/browser/chromeos/system/timezone_util.h
|
| index 484ba820a943b8fe562522b0818c4327d844d327..66b41182d857a4bf8130b5af2cb5501b497b4830 100644
|
| --- a/chrome/browser/chromeos/system/timezone_util.h
|
| +++ b/chrome/browser/chromeos/system/timezone_util.h
|
| @@ -5,7 +5,7 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_SYSTEM_TIMEZONE_UTIL_H_
|
| #define CHROME_BROWSER_CHROMEOS_SYSTEM_TIMEZONE_UTIL_H_
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
|
|
| namespace base {
|
| class ListValue;
|
| @@ -18,7 +18,7 @@ struct TimeZoneResponseData;
|
| namespace system {
|
|
|
| // Creates a list of pairs of each timezone's ID and name.
|
| -scoped_ptr<base::ListValue> GetTimezoneList();
|
| +std::unique_ptr<base::ListValue> GetTimezoneList();
|
|
|
| // Returns true if device is managed and has SystemTimezonePolicy set.
|
| bool HasSystemTimezonePolicy();
|
|
|