| Index: ui/aura/root_window.h
|
| diff --git a/ui/aura/root_window.h b/ui/aura/root_window.h
|
| index 1106e3bee041ee242b44353673a654e42b10cbca..4cb605dcedaa743c9b281bbdeb133789d99f3cdd 100644
|
| --- a/ui/aura/root_window.h
|
| +++ b/ui/aura/root_window.h
|
| @@ -150,18 +150,22 @@ class AURA_EXPORT RootWindow : public ui::CompositorDelegate,
|
| // Invoked when |window| is being destroyed.
|
| void OnWindowDestroying(Window* window);
|
|
|
| - // Invokved when |window|'s bounds is changed. |contained_mouse| indicates if
|
| + // Invoked when |window|'s bounds have changed. |contained_mouse| indicates if
|
| // the bounds before change contained the |last_moust_location()|.
|
| void OnWindowBoundsChanged(Window* window, bool contained_mouse);
|
|
|
| - // Invokved when |window|'s visibility is changed.
|
| + // Invoked when |window|'s visibility is changed.
|
| void OnWindowVisibilityChanged(Window* window, bool is_visible);
|
|
|
| - // Invokved when |window|'s tranfrom has changed. |contained_mouse|
|
| + // Invoked when |window|'s tranfrom has changed. |contained_mouse|
|
| // indicates if the bounds before change contained the
|
| // |last_moust_location()|.
|
| void OnWindowTransformed(Window* window, bool contained_mouse);
|
|
|
| + // Invoked when the keyboard mapping (in X11 terms: the mapping between
|
| + // keycodes and keysyms) has changed.
|
| + void OnKeyboardMappingChanged();
|
| +
|
| // Add/remove observer. There is no need to remove the observer if
|
| // the root window is being deleted. In particular, you SHOULD NOT remove
|
| // in |WindowObserver::OnWindowDestroying| of the observer observing
|
|
|