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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "chrome/browser/chromeos/login/login_html_dialog.h" | |
13 #include "chrome/browser/tab_render_watcher.h" | 12 #include "chrome/browser/tab_render_watcher.h" |
14 #include "chrome/browser/ui/views/unhandled_keyboard_event_handler.h" | 13 #include "chrome/browser/ui/views/unhandled_keyboard_event_handler.h" |
15 #include "content/public/browser/notification_observer.h" | 14 #include "content/public/browser/notification_observer.h" |
16 #include "content/public/browser/notification_registrar.h" | 15 #include "content/public/browser/notification_registrar.h" |
17 #include "content/public/browser/web_contents_delegate.h" | 16 #include "content/public/browser/web_contents_delegate.h" |
18 #include "ui/views/widget/widget.h" | 17 #include "ui/views/widget/widget.h" |
19 #include "ui/views/widget/widget_delegate.h" | 18 #include "ui/views/widget/widget_delegate.h" |
20 | 19 |
21 class GURL; | 20 class GURL; |
22 | 21 |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 // Should we emit the login-prompt-visible signal when the login page is | 138 // Should we emit the login-prompt-visible signal when the login page is |
140 // displayed? | 139 // displayed? |
141 bool should_emit_login_prompt_visible_; | 140 bool should_emit_login_prompt_visible_; |
142 | 141 |
143 DISALLOW_COPY_AND_ASSIGN(WebUILoginView); | 142 DISALLOW_COPY_AND_ASSIGN(WebUILoginView); |
144 }; | 143 }; |
145 | 144 |
146 } // namespace chromeos | 145 } // namespace chromeos |
147 | 146 |
148 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_VIEW_H_ | 147 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_VIEW_H_ |
OLD | NEW |