summaryrefslogtreecommitdiffstats
path: root/chrome/views/custom_frame_view.h
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-13 20:51:58 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-13 20:51:58 +0000
commitede1b12edcf6744339f9286918ecb852bf3e4bb5 (patch)
tree7b4fe455d5b5f6262e6e3b57760a780461ad85b4 /chrome/views/custom_frame_view.h
parent978d2431afaea5aeff8e6d3366a9d289bb3b8f59 (diff)
downloadchromium_src-ede1b12edcf6744339f9286918ecb852bf3e4bb5.zip
chromium_src-ede1b12edcf6744339f9286918ecb852bf3e4bb5.tar.gz
chromium_src-ede1b12edcf6744339f9286918ecb852bf3e4bb5.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/42169 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11668 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/views/custom_frame_view.h')
-rw-r--r--chrome/views/custom_frame_view.h4
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.