| Index: ui/aura_shell/always_on_top_controller.cc
|
| ===================================================================
|
| --- ui/aura_shell/always_on_top_controller.cc (revision 110305)
|
| +++ ui/aura_shell/always_on_top_controller.cc (working copy)
|
| @@ -41,8 +41,8 @@
|
|
|
| aura::Window* AlwaysOnTopController::GetContainer(aura::Window* window) const {
|
| DCHECK(default_container_ && always_on_top_container_);
|
| - return !window->GetProperty(aura::kAlwaysOnTopKey) ? default_container_ :
|
| - always_on_top_container_;
|
| + return !window->GetBoolProperty(aura::kAlwaysOnTopKey) ?
|
| + default_container_ : always_on_top_container_;
|
| }
|
|
|
| void AlwaysOnTopController::OnWindowAdded(aura::Window* child) {
|
|
|