summaryrefslogtreecommitdiffstats
path: root/views
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-02 06:07:00 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-02 06:07:00 +0000
commit99f5dfdbdf3b9d948750a4bbed07b0a2eef2337e (patch)
tree4fbbf6d9b04462e37eb615d2d73b1e4f125543ab /views
parent4e09a2c5abbac61b32f5f6d60d11b23162c1e5fb (diff)
downloadchromium_src-99f5dfdbdf3b9d948750a4bbed07b0a2eef2337e.zip
chromium_src-99f5dfdbdf3b9d948750a4bbed07b0a2eef2337e.tar.gz
chromium_src-99f5dfdbdf3b9d948750a4bbed07b0a2eef2337e.tar.bz2
Reverting to fix builder redness. Please reland with the fixes.
Revert 76485 - Move typedef per review comment. oops! BUG=none TEST=none TBR=ben@chromium.org Review URL: http://codereview.chromium.org/6597098 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76507 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views')
-rw-r--r--views/widget/native_widget.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/views/widget/native_widget.h b/views/widget/native_widget.h
index aadc0da..dffbf93 100644
--- a/views/widget/native_widget.h
+++ b/views/widget/native_widget.h
@@ -20,8 +20,6 @@ class Widget;
//
class NativeWidget {
public:
- typedef std::set<NativeWidget*> NativeWidgets;
-
virtual ~NativeWidget() {}
// Retrieves the NativeWidget implementation associated with the given
@@ -38,6 +36,7 @@ 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);