| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/browser/chromeos/login/login_html_dialog.h" | 9 #include "chrome/browser/chromeos/login/login_html_dialog.h" |
| 10 #include "chrome/browser/chromeos/status/status_area_host.h" | 10 #include "chrome/browser/chromeos/status/status_area_host.h" |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 | 128 |
| 129 // Proxy settings dialog that can be invoked from network menu. | 129 // Proxy settings dialog that can be invoked from network menu. |
| 130 scoped_ptr<LoginHtmlDialog> proxy_settings_dialog_; | 130 scoped_ptr<LoginHtmlDialog> proxy_settings_dialog_; |
| 131 | 131 |
| 132 // Watches webui_login_'s TabContents rendering. | 132 // Watches webui_login_'s TabContents rendering. |
| 133 scoped_ptr<TabFirstRenderWatcher> tab_watcher_; | 133 scoped_ptr<TabFirstRenderWatcher> tab_watcher_; |
| 134 | 134 |
| 135 // Whether the host window is frozen. | 135 // Whether the host window is frozen. |
| 136 bool host_window_frozen_; | 136 bool host_window_frozen_; |
| 137 | 137 |
| 138 // Caches StatusArea visibility setting before it has been initialized. |
| 139 bool status_area_visibility_on_init_; |
| 140 |
| 138 DISALLOW_COPY_AND_ASSIGN(WebUILoginView); | 141 DISALLOW_COPY_AND_ASSIGN(WebUILoginView); |
| 139 }; | 142 }; |
| 140 | 143 |
| 141 } // namespace chromeos | 144 } // namespace chromeos |
| 142 | 145 |
| 143 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_VIEW_H_ | 146 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_VIEW_H_ |
| OLD | NEW |