summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-05 14:40:17 +0000
committerdavemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-05 14:40:17 +0000
commit908fbf459ed4ef66c0e7dc6fb59d63efde47c904 (patch)
tree5fdb38a4e4552400db1c2ebd5bd3f3cdd40abe3a
parentc329adf85eebdcc4318019d7a295c4f6f5e6612c (diff)
downloadchromium_src-908fbf459ed4ef66c0e7dc6fb59d63efde47c904.zip
chromium_src-908fbf459ed4ef66c0e7dc6fb59d63efde47c904.tar.gz
chromium_src-908fbf459ed4ef66c0e7dc6fb59d63efde47c904.tar.bz2
Fix build regression caused by
http://codereview.chromium.org/8136005 TBR=sky BUG=None TEST=None Review URL: http://codereview.chromium.org/8133026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104101 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/platform_util_aura.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/platform_util_aura.cc b/chrome/browser/platform_util_aura.cc
index 1ab4dcd..54e59bf 100644
--- a/chrome/browser/platform_util_aura.cc
+++ b/chrome/browser/platform_util_aura.cc
@@ -46,7 +46,7 @@ void ActivateWindow(gfx::NativeWindow window) {
}
bool IsVisible(gfx::NativeView view) {
- return view->visible();
+ return view->IsVisible();
}
} // namespace platform_util