| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_LOCK_WEBUI_SCREEN_LOCKER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 void LidEventReceived(bool open, const base::TimeTicks& time) override; | 112 void LidEventReceived(bool open, const base::TimeTicks& time) override; |
| 113 | 113 |
| 114 // content::WebContentsObserver: | 114 // content::WebContentsObserver: |
| 115 void RenderProcessGone(base::TerminationStatus status) override; | 115 void RenderProcessGone(base::TerminationStatus status) override; |
| 116 | 116 |
| 117 // ash::ShellObserver: | 117 // ash::ShellObserver: |
| 118 void OnVirtualKeyboardStateChanged(bool activated) override; | 118 void OnVirtualKeyboardStateChanged(bool activated) override; |
| 119 | 119 |
| 120 // keyboard::KeyboardControllerObserver: | 120 // keyboard::KeyboardControllerObserver: |
| 121 void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) override; | 121 void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) override; |
| 122 void OnKeyboardClosed() override {} |
| 122 | 123 |
| 123 // display::DisplayObserver: | 124 // display::DisplayObserver: |
| 124 void OnDisplayAdded(const display::Display& new_display) override; | 125 void OnDisplayAdded(const display::Display& new_display) override; |
| 125 void OnDisplayRemoved(const display::Display& old_display) override; | 126 void OnDisplayRemoved(const display::Display& old_display) override; |
| 126 void OnDisplayMetricsChanged(const display::Display& display, | 127 void OnDisplayMetricsChanged(const display::Display& display, |
| 127 uint32_t changed_metrics) override; | 128 uint32_t changed_metrics) override; |
| 128 | 129 |
| 129 // Returns instance of the OOBE WebUI. | 130 // Returns instance of the OOBE WebUI. |
| 130 OobeUI* GetOobeUI(); | 131 OobeUI* GetOobeUI(); |
| 131 | 132 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 bool is_observing_keyboard_ = false; | 165 bool is_observing_keyboard_ = false; |
| 165 | 166 |
| 166 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; | 167 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; |
| 167 | 168 |
| 168 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); | 169 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); |
| 169 }; | 170 }; |
| 170 | 171 |
| 171 } // namespace chromeos | 172 } // namespace chromeos |
| 172 | 173 |
| 173 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ | 174 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ |
| OLD | NEW |