diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-14 02:49:59 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-14 02:49:59 +0000 |
commit | 6b33e4da472b3c474a3f1328fdba4a84d4a91886 (patch) | |
tree | 60b1bdfdba96c65bfa671e98d7c4c2392f49593f /chrome/views/custom_frame_view.h | |
parent | d0769df5d494568b24f77a54409ec8539bba4cf3 (diff) | |
download | chromium_src-6b33e4da472b3c474a3f1328fdba4a84d4a91886.zip chromium_src-6b33e4da472b3c474a3f1328fdba4a84d4a91886.tar.gz chromium_src-6b33e4da472b3c474a3f1328fdba4a84d4a91886.tar.bz2 |
Rename Window->WindowWin
Pull basic Window interface out of WindowWin into new interface, Window.
Convert code to use it.
Review URL: http://codereview.chromium.org/42201
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11695 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/views/custom_frame_view.h')
-rw-r--r-- | chrome/views/custom_frame_view.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/views/custom_frame_view.h b/chrome/views/custom_frame_view.h index db366a9..2a47c73 100644 --- a/chrome/views/custom_frame_view.h +++ b/chrome/views/custom_frame_view.h @@ -87,8 +87,8 @@ class CustomFrameView : public NonClientFrameView, // Returns the resource collection to be used when rendering the window. WindowResources* resources() const { - return frame_->is_active() || paint_as_active() ? active_resources_ - : inactive_resources_; + return frame_->IsActive() || paint_as_active() ? active_resources_ + : inactive_resources_; } // The bounds of the client view, in this view's coordinates. |