diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-02 06:07:00 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-02 06:07:00 +0000 |
commit | 99f5dfdbdf3b9d948750a4bbed07b0a2eef2337e (patch) | |
tree | 4fbbf6d9b04462e37eb615d2d73b1e4f125543ab /views | |
parent | 4e09a2c5abbac61b32f5f6d60d11b23162c1e5fb (diff) | |
download | chromium_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.h | 3 |
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); |