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_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 void EmitLoginPromptVisibleCalled() override; | 121 void EmitLoginPromptVisibleCalled() override; |
122 | 122 |
123 // Overridden from chromeos::CrasAudioHandler::AudioObserver: | 123 // Overridden from chromeos::CrasAudioHandler::AudioObserver: |
124 void OnActiveOutputNodeChanged() override; | 124 void OnActiveOutputNodeChanged() override; |
125 | 125 |
126 // ash::ShellObserver: | 126 // ash::ShellObserver: |
127 void OnVirtualKeyboardStateChanged(bool activated) override; | 127 void OnVirtualKeyboardStateChanged(bool activated) override; |
128 | 128 |
129 // Overridden from keyboard::KeyboardControllerObserver: | 129 // Overridden from keyboard::KeyboardControllerObserver: |
130 void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) override; | 130 void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) override; |
| 131 void OnKeyboardHidden() override; |
131 | 132 |
132 // Overridden from display::DisplayObserver: | 133 // Overridden from display::DisplayObserver: |
133 void OnDisplayAdded(const display::Display& new_display) override; | 134 void OnDisplayAdded(const display::Display& new_display) override; |
134 void OnDisplayRemoved(const display::Display& old_display) override; | 135 void OnDisplayRemoved(const display::Display& old_display) override; |
135 void OnDisplayMetricsChanged(const display::Display& display, | 136 void OnDisplayMetricsChanged(const display::Display& display, |
136 uint32_t changed_metrics) override; | 137 uint32_t changed_metrics) override; |
137 | 138 |
138 // Overriden from views::WidgetRemovalsObserver: | 139 // Overriden from views::WidgetRemovalsObserver: |
139 void OnWillRemoveView(views::Widget* widget, views::View* view) override; | 140 void OnWillRemoveView(views::Widget* widget, views::View* view) override; |
140 | 141 |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 | 319 |
319 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; | 320 base::WeakPtrFactory<LoginDisplayHostImpl> pointer_factory_; |
320 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; | 321 base::WeakPtrFactory<LoginDisplayHostImpl> animation_weak_ptr_factory_; |
321 | 322 |
322 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 323 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
323 }; | 324 }; |
324 | 325 |
325 } // namespace chromeos | 326 } // namespace chromeos |
326 | 327 |
327 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ | 328 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_IMPL_H_ |
OLD | NEW |