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

Unified Diff: ash/common/shelf/shelf_window_watcher_unittest.cc

Issue 2462753002: Use Ash's ShelfWindowWatcher for app panel windows. (Closed)
Patch Set: Address comments. Created 4 years, 1 month 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
« no previous file with comments | « ash/common/shelf/shelf_window_watcher_item_delegate.cc ('k') | ash/shell/panel_window.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/shelf/shelf_window_watcher_unittest.cc
diff --git a/ash/common/shelf/shelf_window_watcher_unittest.cc b/ash/common/shelf/shelf_window_watcher_unittest.cc
index acf5dc2d04dc86c50e89ca904ecbb14561465dfc..72c65b33a5a5b75ffd89acb3c320a6364d27b3c3 100644
--- a/ash/common/shelf/shelf_window_watcher_unittest.cc
+++ b/ash/common/shelf/shelf_window_watcher_unittest.cc
@@ -9,6 +9,7 @@
#include "ash/common/wm/window_resizer.h"
#include "ash/common/wm/window_state.h"
#include "ash/common/wm_lookup.h"
+#include "ash/common/wm_root_window_controller.h"
#include "ash/common/wm_shell.h"
#include "ash/common/wm_window.h"
#include "ash/common/wm_window_property.h"
@@ -268,4 +269,46 @@ TEST_F(ShelfWindowWatcherTest, DragWindow) {
EXPECT_EQ(id, model_->items()[index].id);
}
+// Ensure shelf items are added and removed as panels are opened and closed.
+TEST_F(ShelfWindowWatcherTest, PanelWindow) {
+ // ShelfModel only has an APP_LIST item.
+ EXPECT_EQ(1, model_->item_count());
+
+ // Adding windows with valid ShelfItemType properties adds shelf items.
+ std::unique_ptr<views::Widget> widget1 =
+ CreateTestWidget(nullptr, kShellWindowId_PanelContainer, gfx::Rect());
+ WmWindow* window1 = WmLookup::Get()->GetWindowForWidget(widget1.get());
+ window1->SetIntProperty(WmWindowProperty::SHELF_ITEM_TYPE, TYPE_APP_PANEL);
+ EXPECT_EQ(2, model_->item_count());
+ std::unique_ptr<views::Widget> widget2 =
+ CreateTestWidget(nullptr, kShellWindowId_DefaultContainer, gfx::Rect());
+ WmWindow* window2 = WmLookup::Get()->GetWindowForWidget(widget2.get());
+ window2->SetIntProperty(WmWindowProperty::SHELF_ITEM_TYPE, TYPE_APP_PANEL);
+ EXPECT_EQ(3, model_->item_count());
+
+ // Create a panel-type widget to mimic Chrome's app panel windows.
+ views::Widget panel_widget;
+ views::Widget::InitParams panel_params(views::Widget::InitParams::TYPE_PANEL);
+ panel_params.ownership = views::Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET;
+ WmShell::Get()
+ ->GetPrimaryRootWindow()
+ ->GetRootWindowController()
+ ->ConfigureWidgetInitParamsForContainer(
+ &panel_widget, kShellWindowId_PanelContainer, &panel_params);
+ panel_widget.Init(panel_params);
+ panel_widget.Show();
+ WmWindow* panel_window = WmLookup::Get()->GetWindowForWidget(&panel_widget);
+ panel_window->SetIntProperty(WmWindowProperty::SHELF_ITEM_TYPE,
+ TYPE_APP_PANEL);
+ EXPECT_EQ(4, model_->item_count());
+
+ // Each ShelfItem is removed when the associated window is destroyed.
+ panel_widget.CloseNow();
+ EXPECT_EQ(3, model_->item_count());
+ widget2.reset();
+ EXPECT_EQ(2, model_->item_count());
+ widget1.reset();
+ EXPECT_EQ(1, model_->item_count());
+}
+
} // namespace ash
« no previous file with comments | « ash/common/shelf/shelf_window_watcher_item_delegate.cc ('k') | ash/shell/panel_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698