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

Unified Diff: chrome/browser/ui/webui/chromeos/login/core_oobe_handler.h

Issue 2429033003: cros: Cleanup lock screen and OOBE C++ backing code. (Closed)
Patch Set: Initial patch Created 4 years, 2 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
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_;

Powered by Google App Engine
This is Rietveld 408576698