diff options
Diffstat (limited to 'views/window/native_window_delegate.h')
-rw-r--r-- | views/window/native_window_delegate.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/views/window/native_window_delegate.h b/views/window/native_window_delegate.h deleted file mode 100644 index 41621ac..0000000 --- a/views/window/native_window_delegate.h +++ /dev/null @@ -1,36 +0,0 @@ -// 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_ |