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

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

Issue 2675007: Add OOBE/login html dialog. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: merge Created 10 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
« no previous file with comments | « chrome/browser/chromeos/login/login_html_dialog.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 c36da0cba7a3e09489f5ec065791a62c4b1090ee..480d71137080a5342f52784376d9e2db98470e49 100644
--- a/chrome/browser/chromeos/login/new_user_view.h
+++ b/chrome/browser/chromeos/login/new_user_view.h
@@ -12,6 +12,7 @@
#include "base/ref_counted.h"
#include "base/scoped_ptr.h"
#include "chrome/browser/chromeos/login/language_switch_model.h"
+#include "chrome/browser/chromeos/login/login_html_dialog.h"
#include "views/accelerator.h"
#include "views/controls/button/button.h"
#include "views/controls/button/menu_button.h"
@@ -32,7 +33,8 @@ namespace chromeos {
class NewUserView : public views::View,
public views::Textfield::Controller,
public views::LinkController,
- public views::ButtonListener {
+ public views::ButtonListener,
+ public LoginHtmlDialog::Delegate {
public:
// Delegate class to get notifications from the view.
class Delegate {
@@ -102,21 +104,29 @@ class NewUserView : public views::View,
virtual bool AcceleratorPressed(const views::Accelerator& accelerator);
+ // LoginHtmlDialog::Delegate implementation.
+ virtual void OnDialogClosed() {}
+
protected:
// views::View overrides:
virtual void ViewHierarchyChanged(bool is_add, views::View *parent,
views::View *child);
-
virtual void NativeViewHierarchyChanged(bool attached,
gfx::NativeView native_view,
views::RootView* root_view);
virtual void LocaleChanged();
private:
+ // Returns corresponding native window.
+ gfx::NativeWindow GetNativeWindow() const;
+
// Enables/disables input controls (textfields, buttons).
void EnableInputControls(bool enabled);
void FocusFirstField();
+ // Creates Link control and adds it as a child.
+ void InitLink(views::Link** link);
+
// Delete and recreate native controls that fail to update preferred size
// after string update.
void RecreateNativeControls();
@@ -126,6 +136,7 @@ class NewUserView : public views::View,
views::Label* title_label_;
views::NativeButton* sign_in_button_;
views::Link* create_account_link_;
+ views::Link* cant_access_account_link_;
views::Link* browse_without_signin_link_;
views::MenuButton* languages_menubutton_;
views::Throbber* throbber_;
@@ -140,6 +151,9 @@ class NewUserView : public views::View,
LanguageSwitchModel language_switch_model_;
+ // Dialog used to display help like "Can't access your account".
+ scoped_ptr<LoginHtmlDialog> dialog_;
+
// Indicates that this view was created when focus manager was unavailable
// (on the hidden tab, for example).
bool focus_delayed_;
« no previous file with comments | « chrome/browser/chromeos/login/login_html_dialog.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