diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-25 21:31:10 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-25 21:31:10 +0000 |
commit | abd6052b2b96066f75252b46e9fb856ec3512795 (patch) | |
tree | 74bc0b5a541e2b96e6801f4564729b7024bbc2f8 /views/widget/native_widget.h | |
parent | 346e2ce5fa245d37b56aabb0f591750f99a5cee1 (diff) | |
download | chromium_src-abd6052b2b96066f75252b46e9fb856ec3512795.zip chromium_src-abd6052b2b96066f75252b46e9fb856ec3512795.tar.gz chromium_src-abd6052b2b96066f75252b46e9fb856ec3512795.tar.bz2 |
Hook up empty interfaces for NativeWidget/NativeWidgetDelegate.
These will be filled out in subsequent changelists to isolate the communication between Widget and WidgetWin/Gtk.
BUG=72040
TEST=existing
Review URL: http://codereview.chromium.org/6596013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76100 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/widget/native_widget.h')
-rw-r--r-- | views/widget/native_widget.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/views/widget/native_widget.h b/views/widget/native_widget.h new file mode 100644 index 0000000..2700f8c --- /dev/null +++ b/views/widget/native_widget.h @@ -0,0 +1,26 @@ +// 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_WIDGET_H_ +#define VIEWS_WIDGET_NATIVE_WIDGET_H_ +#pragma once + +namespace views { +namespace internal { + +//////////////////////////////////////////////////////////////////////////////// +// NativeWidget interface +// +// An interface implemented by an object that encapsulates rendering, event +// handling and widget management provided by an underlying native toolkit. +// +class NativeWidget { + public: + virtual ~NativeWidget() {} +}; + +} // namespace internal +} // namespace views + +#endif // VIEWS_WIDGET_NATIVE_WIDGET_H_ |