| Index: ui/aura/desktop.cc
|
| diff --git a/ui/aura/desktop.cc b/ui/aura/desktop.cc
|
| index 2f6bde8b8459871b0ce8203c41ff5e28c4619249..ffbf793e3d5f80ebe414725918318b8a736c7320 100644
|
| --- a/ui/aura/desktop.cc
|
| +++ b/ui/aura/desktop.cc
|
| @@ -382,6 +382,10 @@ void Desktop::Deactivate(Window* window) {
|
| SetActiveWindow(to_activate, NULL);
|
| }
|
|
|
| +void Desktop::WindowInitialized(Window* window) {
|
| + FOR_EACH_OBSERVER(DesktopObserver, observers_, OnWindowInitialized(window));
|
| +}
|
| +
|
| void Desktop::WindowDestroying(Window* window) {
|
| // Update the focused window state if the window was focused.
|
| if (focused_window_ == window)
|
|
|