Chromium Code Reviews| Index: chrome/browser/ui/webui/chromeos/login/core_oobe_handler.h |
| diff --git a/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.h b/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.h |
| index 6609e39a913ef8fa8f497e805f56b2087fec94d9..6dd399fd501601463cd198c7279de84150cf8f7f 100644 |
| --- a/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.h |
| +++ b/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.h |
| @@ -172,7 +172,7 @@ class CoreOobeHandler : public BaseScreenHandler, |
| // |
| // The instance becomes initialized after the corresponding message is |
| // received from javascript side. |
| - bool is_initialized_; |
| + bool is_initialized_ = false; |
| // Javascript calls that have been deferred while the instance was not |
| // initialized yet. |
| @@ -182,7 +182,7 @@ class CoreOobeHandler : public BaseScreenHandler, |
| OobeUI* oobe_ui_; |
|
achuithb
2016/10/20 17:38:33
= nullptr
jdufault
2016/10/20 19:35:19
Done.
|
| // True if we should show OOBE instead of login. |
| - bool show_oobe_ui_; |
| + bool show_oobe_ui_ = false; |
| // Updates when version info is changed. |
| VersionInfoUpdater version_info_updater_; |
| @@ -190,7 +190,7 @@ class CoreOobeHandler : public BaseScreenHandler, |
| // Help application used for help dialogs. |
| scoped_refptr<HelpAppLauncher> help_app_; |
| - Delegate* delegate_; |
| + Delegate* delegate_ = nullptr; |
| std::unique_ptr<AccessibilityStatusSubscription> accessibility_subscription_; |