| 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 f10ab5259490ca892b6ede7097ea9e3550d082eb..937e8c7e30145bbe44023951b7f2e2f667e003a7 100644
|
| --- a/chrome/browser/ui/webui/history_login_handler.h
|
| +++ b/chrome/browser/ui/webui/history_login_handler.h
|
| @@ -12,10 +12,14 @@
|
|
|
| class ProfileInfoWatcher;
|
|
|
| +namespace content {
|
| +class WebUIDataSource;
|
| +}
|
| +
|
| // The handler for login-related messages from chrome://history.
|
| class HistoryLoginHandler : public content::WebUIMessageHandler {
|
| public:
|
| - HistoryLoginHandler();
|
| + explicit HistoryLoginHandler(content::WebUIDataSource* data_source);
|
| ~HistoryLoginHandler() override;
|
|
|
| // WebUIMessageHandler implementation.
|
| @@ -35,6 +39,8 @@ class HistoryLoginHandler : public content::WebUIMessageHandler {
|
| // changes).
|
| std::unique_ptr<ProfileInfoWatcher> profile_info_watcher_;
|
|
|
| + content::WebUIDataSource* data_source_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(HistoryLoginHandler);
|
| };
|
|
|
|
|