Index: athena/wm/window_list_provider_impl.cc |
diff --git a/athena/wm/window_list_provider_impl.cc b/athena/wm/window_list_provider_impl.cc |
index 6c6580f777d1900b0f1a84c3fc8ee927de850518..02c54ef68f5a6c681d536b8fab0d9fdffc28ac77 100644 |
--- a/athena/wm/window_list_provider_impl.cc |
+++ b/athena/wm/window_list_provider_impl.cc |
@@ -53,7 +53,9 @@ bool WindowListProviderImpl::IsWindowInList(aura::Window* window) const { |
} |
bool WindowListProviderImpl::IsValidWindow(aura::Window* window) const { |
- return window->type() == ui::wm::WINDOW_TYPE_NORMAL; |
+ // TODO(oshima): crbug.com/413912 |
+ return window->type() == ui::wm::WINDOW_TYPE_NORMAL || |
+ window->type() == ui::wm::WINDOW_TYPE_PANEL; |
} |
void WindowListProviderImpl::MoveToFront(aura::Window* window) { |