Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2021)

Unified Diff: chrome/browser/platform_util_aura.cc

Issue 8095016: Additional build fixes for aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing file Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/platform_util_aura.cc
diff --git a/chrome/browser/platform_util_aura.cc b/chrome/browser/platform_util_aura.cc
index 380a34a37c1c3d3b5db76c342fb1a564f89fcab7..1ab4dcdacf0d373b0a02a7117b1e0a68042479d7 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->visibility() != aura::Window::VISIBILITY_HIDDEN;
+ return view->visible();
}
} // namespace platform_util

Powered by Google App Engine
This is Rietveld 408576698