blob: 930790df396e53aa931e43588274fecdae493438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// 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_
#pragma once
#include "ui/aura/aura_export.h"
namespace gfx {
class Size;
}
namespace aura {
class Window;
class AURA_EXPORT RootWindowObserver {
public:
// Invoked after the RootWindow is resized.
virtual void OnRootWindowResized(const gfx::Size& new_size) {}
// Invoked after the screen's work area insets changes.
virtual void OnScreenWorkAreaInsetsChanged() {}
// Invoked when a window is focused.
virtual void OnWindowFocused(Window* window) {}
protected:
virtual ~RootWindowObserver() {}
};
} // namespace aura
#endif // UI_AURA_ROOT_WINDOW_OBSERVER_H_
|