| Index: ui/aura/window.h
|
| diff --git a/ui/aura/window.h b/ui/aura/window.h
|
| index 4e42c13653165e68a48965e2ab55fa1c0d5aef26..5e8bb481f903863de72a78d250e7ddbfc36d242c 100644
|
| --- a/ui/aura/window.h
|
| +++ b/ui/aura/window.h
|
| @@ -62,7 +62,8 @@ class AURA_EXPORT Window : public ui::LayerDelegate {
|
| // Changes the visibility of the window.
|
| void Show();
|
| void Hide();
|
| - bool visible() const { return visible_; }
|
| + // Returns true if this window and all its ancestors are visible.
|
| + bool IsVisible() const;
|
|
|
| // Assigns a LayoutManager to size and place child windows.
|
| // The Window takes ownership of the LayoutManager.
|
| @@ -170,8 +171,6 @@ class AURA_EXPORT Window : public ui::LayerDelegate {
|
|
|
| WindowDelegate* delegate_;
|
|
|
| - bool visible_;
|
| -
|
| scoped_ptr<ui::Layer> layer_;
|
|
|
| // The Window's parent.
|
|
|