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_WEBUI_LOGIN_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_VIEW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_VIEW_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 virtual void HandleKeyboardEvent( | 129 virtual void HandleKeyboardEvent( |
130 content::WebContents* source, | 130 content::WebContents* source, |
131 const content::NativeWebKeyboardEvent& event) OVERRIDE; | 131 const content::NativeWebKeyboardEvent& event) OVERRIDE; |
132 virtual bool IsPopupOrPanel( | 132 virtual bool IsPopupOrPanel( |
133 const content::WebContents* source) const OVERRIDE; | 133 const content::WebContents* source) const OVERRIDE; |
134 virtual bool TakeFocus(content::WebContents* source, bool reverse) OVERRIDE; | 134 virtual bool TakeFocus(content::WebContents* source, bool reverse) OVERRIDE; |
135 virtual void RequestMediaAccessPermission( | 135 virtual void RequestMediaAccessPermission( |
136 content::WebContents* web_contents, | 136 content::WebContents* web_contents, |
137 const content::MediaStreamRequest& request, | 137 const content::MediaStreamRequest& request, |
138 const content::MediaResponseCallback& callback) OVERRIDE; | 138 const content::MediaResponseCallback& callback) OVERRIDE; |
| 139 virtual bool PreHandleGestureEvent( |
| 140 content::WebContents* source, |
| 141 const blink::WebGestureEvent& event) OVERRIDE; |
139 | 142 |
140 // Overridden from content::WebContentsObserver. | 143 // Overridden from content::WebContentsObserver. |
141 virtual void DidFailProvisionalLoad( | 144 virtual void DidFailProvisionalLoad( |
142 int64 frame_id, | 145 int64 frame_id, |
143 const base::string16& frame_unique_name, | 146 const base::string16& frame_unique_name, |
144 bool is_main_frame, | 147 bool is_main_frame, |
145 const GURL& validated_url, | 148 const GURL& validated_url, |
146 int error_code, | 149 int error_code, |
147 const base::string16& error_description, | 150 const base::string16& error_description, |
148 content::RenderViewHost* render_view_host) OVERRIDE; | 151 content::RenderViewHost* render_view_host) OVERRIDE; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 scoped_ptr<ScopedGaiaAuthExtension> auth_extension_; | 184 scoped_ptr<ScopedGaiaAuthExtension> auth_extension_; |
182 | 185 |
183 ObserverList<web_modal::ModalDialogHostObserver> observer_list_; | 186 ObserverList<web_modal::ModalDialogHostObserver> observer_list_; |
184 | 187 |
185 DISALLOW_COPY_AND_ASSIGN(WebUILoginView); | 188 DISALLOW_COPY_AND_ASSIGN(WebUILoginView); |
186 }; | 189 }; |
187 | 190 |
188 } // namespace chromeos | 191 } // namespace chromeos |
189 | 192 |
190 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_VIEW_H_ | 193 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_VIEW_H_ |
OLD | NEW |