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

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

Issue 5709001: Place the spinner in the right corner of the controls window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/browser/chromeos/login
Patch Set: Merged with trunk. Created 10 years 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/screen_locker.h
diff --git a/chrome/browser/chromeos/login/screen_locker.h b/chrome/browser/chromeos/login/screen_locker.h
index 27e14045b260d51f62fbe2da7bd5541941ce2fdd..39c45165c3ba8c5ab0da8a9e399ffa8ee88dc48a 100644
--- a/chrome/browser/chromeos/login/screen_locker.h
+++ b/chrome/browser/chromeos/login/screen_locker.h
@@ -32,6 +32,7 @@ class LockerInputEventObserver;
class MessageBubble;
class MouseEventRelay;
class ScreenLockView;
+class ThrobberManager;
class LoginFailure;
namespace test {
@@ -118,6 +119,10 @@ class ScreenLocker : public LoginStatusConsumer,
virtual ~ScreenLocker();
+ // Starts/Stops throbber.
+ void StartThrobber();
+ void StopThrobber();
oshima 2010/12/09 21:52:10 Looks like it's simpler to have these method and T
altimofeev 2010/12/10 16:37:40 I put it here because created throbber belongs to
+
// Sets the authenticator.
void SetAuthenticator(Authenticator* authenticator);
@@ -203,6 +208,8 @@ class ScreenLocker : public LoginStatusConsumer,
// The time when the authentication is started.
base::Time authentication_start_time_;
+ scoped_ptr<ThrobberManager> throbber_manager_;
+
DISALLOW_COPY_AND_ASSIGN(ScreenLocker);
};

Powered by Google App Engine
This is Rietveld 408576698