summaryrefslogtreecommitdiffstats
path: root/views
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-02 01:18:31 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-02 01:18:31 +0000
commit03f0d9171caafe0691294831b089bccf169397f5 (patch)
treec50daa1418305baa5099529a5f1e7adb144d2de8 /views
parent023fe18beb68a50478e3c8225705447ef030cbbb (diff)
downloadchromium_src-03f0d9171caafe0691294831b089bccf169397f5.zip
chromium_src-03f0d9171caafe0691294831b089bccf169397f5.tar.gz
chromium_src-03f0d9171caafe0691294831b089bccf169397f5.tar.bz2
Move typedef per review comment. oops!
BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76485 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views')
-rw-r--r--views/widget/native_widget.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/views/widget/native_widget.h b/views/widget/native_widget.h
index dffbf93..aadc0da 100644
--- a/views/widget/native_widget.h
+++ b/views/widget/native_widget.h
@@ -20,6 +20,8 @@ class Widget;
//
class NativeWidget {
public:
+ typedef std::set<NativeWidget*> NativeWidgets;
+
virtual ~NativeWidget() {}
// Retrieves the NativeWidget implementation associated with the given
@@ -36,7 +38,6 @@ class NativeWidget {
// Returns all NativeWidgets in |native_view|'s hierarchy, including itself if
// it is one.
- typedef std::set<NativeWidget*> NativeWidgets;
static void GetAllNativeWidgets(gfx::NativeView native_view,
NativeWidgets* children);