summaryrefslogtreecommitdiffstats
path: root/chromium/ui/aura/root_window_observer.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ui/aura/root_window_observer.h')
-rw-r--r--chromium/ui/aura/root_window_observer.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/chromium/ui/aura/root_window_observer.h b/chromium/ui/aura/root_window_observer.h
deleted file mode 100644
index bfb8e65c518..00000000000
--- a/chromium/ui/aura/root_window_observer.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef UI_AURA_ROOT_WINDOW_OBSERVER_H_
-#define UI_AURA_ROOT_WINDOW_OBSERVER_H_
-
-#include "ui/aura/aura_export.h"
-
-namespace gfx {
-class Point;
-class Size;
-}
-
-namespace aura {
-class RootWindow;
-class Window;
-
-class AURA_EXPORT RootWindowObserver {
- public:
- // Invoked after the RootWindow's host has been resized.
- virtual void OnRootWindowHostResized(const RootWindow* root) {}
-
- // Invoked after the RootWindow's host has been moved on screen.
- virtual void OnRootWindowHostMoved(const RootWindow* root,
- const gfx::Point& new_origin) {}
-
- // Invoked when the native windowing system sends us a request to close our
- // window.
- virtual void OnRootWindowHostCloseRequested(const RootWindow* root) {}
-
- // Invoked when the keyboard mapping has changed.
- virtual void OnKeyboardMappingChanged(const RootWindow* root) {}
-
- protected:
- virtual ~RootWindowObserver() {}
-};
-
-} // namespace aura
-
-#endif // UI_AURA_ROOT_WINDOW_OBSERVER_H_