blob: 41621ac7b81c4566561d406a0020ec1b94ca6957 (
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) 2011 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 VIEWS_WIDGET_NATIVE_WINDOW_DELEGATE_H_
#define VIEWS_WIDGET_NATIVE_WINDOW_DELEGATE_H_
#pragma once
namespace ui {
class ThemeProvider;
}
namespace views {
namespace internal {
////////////////////////////////////////////////////////////////////////////////
// NativeWindowDelegate interface
//
// An interface implemented by an object that receives notifications from a
// NativeWindow implementation.
//
class NativeWindowDelegate {
public:
virtual ~NativeWindowDelegate() {}
//
virtual Window* AsWindow() = 0;
//
virtual NativeWidgetDelegate* AsNativeWidgetDelegate() = 0;
};
} // namespace internal
} // namespace views
#endif // VIEWS_WIDGET_NATIVE_WINDOW_DELEGATE_H_
|