OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_REGISTRATION_SCREEN_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 virtual void CreateView() OVERRIDE; | 62 virtual void CreateView() OVERRIDE; |
63 virtual void Refresh() OVERRIDE; | 63 virtual void Refresh() OVERRIDE; |
64 virtual RegistrationView* AllocateView() OVERRIDE; | 64 virtual RegistrationView* AllocateView() OVERRIDE; |
65 | 65 |
66 // content::WebContentsDelegate implementation: | 66 // content::WebContentsDelegate implementation: |
67 virtual content::WebContents* OpenURLFromTab( | 67 virtual content::WebContents* OpenURLFromTab( |
68 content::WebContents* source, | 68 content::WebContents* source, |
69 const content::OpenURLParams& params) OVERRIDE; | 69 const content::OpenURLParams& params) OVERRIDE; |
70 | 70 |
71 virtual void HandleKeyboardEvent( | 71 virtual void HandleKeyboardEvent( |
72 const NativeWebKeyboardEvent& event) OVERRIDE; | 72 const content::NativeWebKeyboardEvent& event) OVERRIDE; |
73 | 73 |
74 // WebPageScreen implementation: | 74 // WebPageScreen implementation: |
75 virtual void CloseScreen(ScreenObserver::ExitCodes code) OVERRIDE; | 75 virtual void CloseScreen(ScreenObserver::ExitCodes code) OVERRIDE; |
76 | 76 |
77 UnhandledKeyboardEventHandler unhandled_keyboard_handler_; | 77 UnhandledKeyboardEventHandler unhandled_keyboard_handler_; |
78 | 78 |
79 DISALLOW_COPY_AND_ASSIGN(RegistrationScreen); | 79 DISALLOW_COPY_AND_ASSIGN(RegistrationScreen); |
80 }; | 80 }; |
81 | 81 |
82 } // namespace chromeos | 82 } // namespace chromeos |
83 | 83 |
84 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_ | 84 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_ |
OLD | NEW |