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

Unified Diff: ui/keyboard/keyboard_controller.h

Issue 2201323002: Simplify VirtualKeyboardTray (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: ui/keyboard/keyboard_controller.h
diff --git a/ui/keyboard/keyboard_controller.h b/ui/keyboard/keyboard_controller.h
index ec46712e0ef3e017aa1aa2ebd361b3fcf5b4781c..e332a1f4501d871a77675bb20b5b8f1aad95209d 100644
--- a/ui/keyboard/keyboard_controller.h
+++ b/ui/keyboard/keyboard_controller.h
@@ -82,8 +82,9 @@ class KEYBOARD_EXPORT KeyboardController : public ui::InputMethodObserver,
void NotifyKeyboardBoundsChanging(const gfx::Rect& new_bounds);
// Management of the observer list.
- virtual void AddObserver(KeyboardControllerObserver* observer);
- virtual void RemoveObserver(KeyboardControllerObserver* observer);
+ void AddObserver(KeyboardControllerObserver* observer);
+ void RemoveObserver(KeyboardControllerObserver* observer);
+ bool HasObserver(KeyboardControllerObserver* observer) const;
KeyboardUI* ui() { return ui_.get(); }

Powered by Google App Engine
This is Rietveld 408576698