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 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 virtual void CreateView() OVERRIDE; | 64 virtual void CreateView() OVERRIDE; |
65 virtual void Refresh() OVERRIDE; | 65 virtual void Refresh() OVERRIDE; |
66 virtual RegistrationView* AllocateView() OVERRIDE; | 66 virtual RegistrationView* AllocateView() OVERRIDE; |
67 | 67 |
68 // content::WebContentsDelegate implementation: | 68 // content::WebContentsDelegate implementation: |
69 virtual content::WebContents* OpenURLFromTab( | 69 virtual content::WebContents* OpenURLFromTab( |
70 content::WebContents* source, | 70 content::WebContents* source, |
71 const content::OpenURLParams& params) OVERRIDE; | 71 const content::OpenURLParams& params) OVERRIDE; |
72 | 72 |
73 virtual void HandleKeyboardEvent( | 73 virtual void HandleKeyboardEvent( |
| 74 content::WebContents* source, |
74 const content::NativeWebKeyboardEvent& event) OVERRIDE; | 75 const content::NativeWebKeyboardEvent& event) OVERRIDE; |
75 | 76 |
76 // WebPageScreen implementation: | 77 // WebPageScreen implementation: |
77 virtual void CloseScreen(ScreenObserver::ExitCodes code) OVERRIDE; | 78 virtual void CloseScreen(ScreenObserver::ExitCodes code) OVERRIDE; |
78 | 79 |
79 UnhandledKeyboardEventHandler unhandled_keyboard_handler_; | 80 UnhandledKeyboardEventHandler unhandled_keyboard_handler_; |
80 | 81 |
81 DISALLOW_COPY_AND_ASSIGN(RegistrationScreen); | 82 DISALLOW_COPY_AND_ASSIGN(RegistrationScreen); |
82 }; | 83 }; |
83 | 84 |
84 } // namespace chromeos | 85 } // namespace chromeos |
85 | 86 |
86 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_ | 87 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_ |
OLD | NEW |