Index: ui/keyboard/keyboard_controller_observer.h |
diff --git a/ui/keyboard/keyboard_controller_observer.h b/ui/keyboard/keyboard_controller_observer.h |
index 174d06bb3507f924856d4586ff03c33382419368..1212cb383edb43d96d90ce60918fab090cc27d19 100644 |
--- a/ui/keyboard/keyboard_controller_observer.h |
+++ b/ui/keyboard/keyboard_controller_observer.h |
@@ -21,6 +21,9 @@ class KEYBOARD_EXPORT KeyboardControllerObserver { |
// Called when the keyboard bounds or visibility are about to change. |
virtual void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) = 0; |
flackr
2015/06/24 22:08:42
Provide default implementation of this one as well
bshe
2015/06/25 14:01:59
Done.
|
+ |
+ // Called when the keyboard bounds or visibility changed. |
+ virtual void OnKeyboardBoundsChanged(const gfx::Rect& new_bounds) {}; |
}; |
} // namespace keyboard |