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

Unified Diff: chrome/browser/chromeos/login/existing_user_controller.h

Issue 2060623002: Implementation of Device End of Life Notification (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Modify browsertest Created 4 years, 6 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/chromeos/login/existing_user_controller.h
diff --git a/chrome/browser/chromeos/login/existing_user_controller.h b/chrome/browser/chromeos/login/existing_user_controller.h
index e33bf6710179309edff4de55afb1207e35e11787..456b38d5b9c50278df8b1b735fdf35ef450c1718 100644
--- a/chrome/browser/chromeos/login/existing_user_controller.h
+++ b/chrome/browser/chromeos/login/existing_user_controller.h
@@ -19,12 +19,14 @@
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "chrome/browser/chromeos/app_mode/kiosk_app_manager.h"
+#include "chrome/browser/chromeos/eol_notification.h"
xiyuan 2016/06/16 22:41:28 Forward clear in line 49 is enough, move the inclu
xiaoyinh(OOO Sep 11-29) 2016/06/17 04:07:35 Done.
#include "chrome/browser/chromeos/hats/hats_notification_controller.h"
#include "chrome/browser/chromeos/login/session/user_session_manager.h"
#include "chrome/browser/chromeos/login/signin/token_handle_util.h"
#include "chrome/browser/chromeos/login/ui/login_display.h"
#include "chrome/browser/chromeos/settings/cros_settings.h"
#include "chrome/browser/chromeos/settings/device_settings_service.h"
+#include "chromeos/dbus/update_engine_client.h"
xiyuan 2016/06/16 22:41:28 Do we need this?
xiaoyinh(OOO Sep 11-29) 2016/06/17 04:07:35 Removed.
#include "chromeos/login/auth/login_performer.h"
#include "chromeos/login/auth/user_context.h"
#include "components/signin/core/account_id/account_id.h"
@@ -44,6 +46,7 @@ class BootstrapUserContextInitializer;
class CrosSettings;
class LoginDisplayHost;
class OAuth2TokenInitializer;
+class EolNotification;
namespace login {
class NetworkStateHelper;
@@ -252,6 +255,9 @@ class ExistingUserController : public LoginDisplay::Delegate,
const AccountId&,
TokenHandleUtil::TokenHandleStatus token_handle_status);
+ // Used to Add/Update Eol notification
+ std::unique_ptr<EolNotification> eol_notification_;
xiyuan 2016/06/16 22:41:28 This does not feel belong here. It is user session
xiaoyinh(OOO Sep 11-29) 2016/06/17 04:07:35 Hi Xiyuan, Could you elaborate what could go wron
xiyuan 2016/06/17 15:21:27 ExistingUserController is part of the login screen
+
// Public session auto-login timer.
std::unique_ptr<base::OneShotTimer> auto_login_timer_;

Powered by Google App Engine
This is Rietveld 408576698