| Index: chrome/browser/ui/webui/history_login_handler.h
|
| diff --git a/chrome/browser/ui/webui/history_login_handler.h b/chrome/browser/ui/webui/history_login_handler.h
|
| index 790955e81897529baadbce5eb06f55d1714c3ce6..62fb4b7e83e1d44e7cba90cb971597eb2eb0c9b4 100644
|
| --- a/chrome/browser/ui/webui/history_login_handler.h
|
| +++ b/chrome/browser/ui/webui/history_login_handler.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef CHROME_BROWSER_UI_WEBUI_HISTORY_LOGIN_HANDLER_H_
|
| #define CHROME_BROWSER_UI_WEBUI_HISTORY_LOGIN_HANDLER_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "content/public/browser/web_ui_message_handler.h"
|
|
|
| class ProfileInfoWatcher;
|
| @@ -29,7 +30,7 @@ class HistoryLoginHandler : public content::WebUIMessageHandler {
|
|
|
| // Watches this web UI's profile for info changes (e.g. authenticated username
|
| // changes).
|
| - scoped_ptr<ProfileInfoWatcher> profile_info_watcher_;
|
| + std::unique_ptr<ProfileInfoWatcher> profile_info_watcher_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(HistoryLoginHandler);
|
| };
|
|
|