Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(772)

Side by Side Diff: chrome/browser/chromeos/login/ui/login_display_host_impl.h

Issue 2323823004: Add action for each button on opt-in IME menu. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698