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

Unified Diff: chrome/browser/chromeos/login/new_user_view.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: nits 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
« no previous file with comments | « chrome/browser/chromeos/login/login_screen.cc ('k') | chrome/browser/chromeos/login/new_user_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/new_user_view.h
diff --git a/chrome/browser/chromeos/login/new_user_view.h b/chrome/browser/chromeos/login/new_user_view.h
index bfeed4e4b680432f6077a44d2019113d976edde5..6b282d0b877a3a9d5de36993c147667700c8e14a 100644
--- a/chrome/browser/chromeos/login/new_user_view.h
+++ b/chrome/browser/chromeos/login/new_user_view.h
@@ -9,7 +9,9 @@
#include <string>
#include "base/task.h"
+#include "chrome/browser/chromeos/login/helper.h"
#include "chrome/browser/chromeos/login/language_switch_menu.h"
+#include "chrome/browser/chromeos/login/user_input.h"
#include "views/accelerator.h"
#include "views/controls/button/button.h"
#include "views/controls/button/menu_button.h"
@@ -20,14 +22,14 @@
namespace views {
class Label;
class NativeButton;
-class Throbber;
} // namespace views
namespace chromeos {
// View that is used for new user login. It asks for username and password,
// allows to specify language preferences or initiate new account creation.
-class NewUserView : public views::View,
+class NewUserView : public ThrobberHostView,
+ public UserInput,
public views::Textfield::Controller,
public views::LinkController,
public views::ButtonListener {
@@ -73,18 +75,6 @@ class NewUserView : public views::View,
// Update strings from the resources. Executed on language change.
void UpdateLocalizedStrings();
- // Resets password text and sets the enabled state of the password.
- void ClearAndEnablePassword();
-
- // Resets password and username text and focuses on username.
- void ClearAndEnableFields();
-
- // Starts throbber shown during login.
- void StartThrobber();
-
- // Stops throbber shown during login.
- void StopThrobber();
-
// Returns bounds of password field in screen coordinates.
gfx::Rect GetPasswordBounds() const;
@@ -115,9 +105,17 @@ class NewUserView : public views::View,
// Overridden from views::LinkController.
virtual void LinkActivated(views::Link* source, int event_flags);
-
virtual bool AcceleratorPressed(const views::Accelerator& accelerator);
+ // Overridden from ThrobberHostView:
+ virtual gfx::Rect CalculateThrobberBounds(views::Throbber* throbber);
+
+ // Overridden from UserInput:
+ virtual void EnableInputControls(bool enabled);
+ virtual void ClearAndFocusControls();
+ virtual void ClearAndFocusPassword();
+ virtual gfx::Rect GetMainInputScreenBounds() const;
+
protected:
// views::View overrides:
virtual void ViewHierarchyChanged(bool is_add,
@@ -130,8 +128,6 @@ class NewUserView : public views::View,
void AddChildView(View* view);
private:
- // Enables/disables input controls (textfields, buttons).
- void EnableInputControls(bool enabled);
void FocusFirstField();
// Creates Link control and adds it as a child.
@@ -165,7 +161,6 @@ class NewUserView : public views::View,
views::Link* create_account_link_;
views::Link* guest_link_;
views::MenuButton* languages_menubutton_;
- views::Throbber* throbber_;
views::Accelerator accel_focus_pass_;
views::Accelerator accel_focus_user_;
« no previous file with comments | « chrome/browser/chromeos/login/login_screen.cc ('k') | chrome/browser/chromeos/login/new_user_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698