testOobeLocalization implementation
[chromium-blink-merge.git] / ui / aura / root_window_observer.h
blob0ef86e127e8dd11843a6dc177b9dcb766c277862
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_AURA_ROOT_WINDOW_OBSERVER_H_
6 #define UI_AURA_ROOT_WINDOW_OBSERVER_H_
8 #include "ui/aura/aura_export.h"
10 namespace gfx {
11 class Point;
12 class Size;
15 namespace aura {
16 class RootWindow;
17 class Window;
19 class AURA_EXPORT RootWindowObserver {
20 public:
21 // Invoked after the RootWindow's host has been resized.
22 virtual void OnWindowTreeHostResized(const RootWindow* root) {}
24 // Invoked after the RootWindow's host has been moved on screen.
25 virtual void OnWindowTreeHostMoved(const RootWindow* root,
26 const gfx::Point& new_origin) {}
28 // Invoked when the native windowing system sends us a request to close our
29 // window.
30 virtual void OnWindowTreeHostCloseRequested(const RootWindow* root) {}
32 // Invoked when the keyboard mapping has changed.
33 virtual void OnKeyboardMappingChanged(const RootWindow* root) {}
35 protected:
36 virtual ~RootWindowObserver() {}
39 } // namespace aura
41 #endif // UI_AURA_ROOT_WINDOW_OBSERVER_H_