| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_ACCOUNT_SCREEN_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_ACCOUNT_SCREEN_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_ACCOUNT_SCREEN_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_ACCOUNT_SCREEN_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
| 12 #include "chrome/browser/chromeos/login/account_creation_view.h" | 12 #include "chrome/browser/chromeos/login/account_creation_view.h" |
| 13 #include "chrome/browser/chromeos/login/screen_observer.h" | 13 #include "chrome/browser/chromeos/login/screen_observer.h" |
| 14 #include "chrome/browser/chromeos/login/view_screen.h" | 14 #include "chrome/browser/chromeos/login/view_screen.h" |
| 15 #include "chrome/browser/chromeos/login/web_page_screen.h" | 15 #include "chrome/browser/chromeos/login/web_page_screen.h" |
| 16 #include "chrome/browser/chromeos/login/web_page_view.h" | 16 #include "chrome/browser/chromeos/login/web_page_view.h" |
| 17 #include "chrome/browser/tab_contents/tab_contents_delegate.h" | 17 #include "content/browser/tab_contents/tab_contents_delegate.h" |
| 18 | 18 |
| 19 class GURL; | 19 class GURL; |
| 20 class WizardScreenDelegate; | 20 class WizardScreenDelegate; |
| 21 | 21 |
| 22 namespace chromeos { | 22 namespace chromeos { |
| 23 | 23 |
| 24 // AccountScreen is shown when user is creating new Google Account. | 24 // AccountScreen is shown when user is creating new Google Account. |
| 25 class AccountScreen : public ViewScreen<AccountCreationView>, | 25 class AccountScreen : public ViewScreen<AccountCreationView>, |
| 26 public WebPageScreen, | 26 public WebPageScreen, |
| 27 public WebPageDelegate, | 27 public WebPageDelegate, |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 static scoped_ptr<GURL> new_account_page_url_; | 62 static scoped_ptr<GURL> new_account_page_url_; |
| 63 // Indicates if we should check for HTTPS scheme. Overriden by tests. | 63 // Indicates if we should check for HTTPS scheme. Overriden by tests. |
| 64 static bool check_for_https_; | 64 static bool check_for_https_; |
| 65 | 65 |
| 66 DISALLOW_COPY_AND_ASSIGN(AccountScreen); | 66 DISALLOW_COPY_AND_ASSIGN(AccountScreen); |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 } // namespace chromeos | 69 } // namespace chromeos |
| 70 | 70 |
| 71 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_ACCOUNT_SCREEN_H_ | 71 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_ACCOUNT_SCREEN_H_ |
| OLD | NEW |