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

Unified Diff: chrome/browser/chromeos/login/screens/eula_model.cc

Issue 755203002: Added usage of ScreenContext in EulaScreen. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed comments. Created 6 years, 1 month 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/screens/eula_model.cc
diff --git a/chromeos/login/auth/auth_attempt_state_resolver.cc b/chrome/browser/chromeos/login/screens/eula_model.cc
similarity index 53%
copy from chromeos/login/auth/auth_attempt_state_resolver.cc
copy to chrome/browser/chromeos/login/screens/eula_model.cc
index b8def0d12d149361b9cb291ebdacc73b7789fe53..0a7e7f45834461baaa45892424a3373fb5fd9940 100644
--- a/chromeos/login/auth/auth_attempt_state_resolver.cc
+++ b/chrome/browser/chromeos/login/screens/eula_model.cc
@@ -2,14 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chromeos/login/auth/auth_attempt_state_resolver.h"
+#include "chrome/browser/chromeos/login/screens/eula_model.h"
namespace chromeos {
-AuthAttemptStateResolver::AuthAttemptStateResolver() {
+EulaModel::EulaModel(BaseScreenDelegate* base_screen_delegate)
+ : BaseScreen(base_screen_delegate) {
}
-AuthAttemptStateResolver::~AuthAttemptStateResolver() {
+EulaModel::~EulaModel() {
Denis Kuznetsov (DE-MUC) 2014/11/25 17:31:17 move GetName() implementation here.
ygorshenin1 2014/11/26 11:45:40 Done.
}
} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698