OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl.h" | 5 #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include "ash/common/shelf/app_list_button.h" | |
10 #include "ash/common/shelf/shelf_button.h" | |
11 #include "ash/common/shelf/shelf_constants.h" | |
12 #include "ash/common/shelf/shelf_model.h" | |
13 #include "ash/common/shelf/shelf_view.h" | |
14 #include "ash/common/shelf/shelf_widget.h" | |
15 #include "ash/common/shelf/wm_shelf.h" | |
16 #include "ash/common/wm/window_state.h" | |
17 #include "ash/common/wm_shell.h" | |
18 #include "ash/common/wm_window.h" | |
19 #include "ash/public/cpp/window_properties.h" | 9 #include "ash/public/cpp/window_properties.h" |
| 10 #include "ash/shelf/app_list_button.h" |
| 11 #include "ash/shelf/shelf_button.h" |
| 12 #include "ash/shelf/shelf_constants.h" |
| 13 #include "ash/shelf/shelf_model.h" |
| 14 #include "ash/shelf/shelf_view.h" |
| 15 #include "ash/shelf/shelf_widget.h" |
| 16 #include "ash/shelf/wm_shelf.h" |
20 #include "ash/shell.h" | 17 #include "ash/shell.h" |
21 #include "ash/test/shelf_view_test_api.h" | 18 #include "ash/test/shelf_view_test_api.h" |
22 #include "ash/wm/window_properties.h" | 19 #include "ash/wm/window_properties.h" |
| 20 #include "ash/wm/window_state.h" |
23 #include "ash/wm/window_state_aura.h" | 21 #include "ash/wm/window_state_aura.h" |
24 #include "ash/wm/window_util.h" | 22 #include "ash/wm/window_util.h" |
| 23 #include "ash/wm_shell.h" |
| 24 #include "ash/wm_window.h" |
25 #include "base/macros.h" | 25 #include "base/macros.h" |
26 #include "base/run_loop.h" | 26 #include "base/run_loop.h" |
27 #include "base/strings/stringprintf.h" | 27 #include "base/strings/stringprintf.h" |
28 #include "base/strings/utf_string_conversions.h" | 28 #include "base/strings/utf_string_conversions.h" |
29 #include "build/build_config.h" | 29 #include "build/build_config.h" |
30 #include "chrome/browser/apps/app_browsertest_util.h" | 30 #include "chrome/browser/apps/app_browsertest_util.h" |
31 #include "chrome/browser/chrome_notification_types.h" | 31 #include "chrome/browser/chrome_notification_types.h" |
32 #include "chrome/browser/extensions/extension_apitest.h" | 32 #include "chrome/browser/extensions/extension_apitest.h" |
33 #include "chrome/browser/extensions/extension_browsertest.h" | 33 #include "chrome/browser/extensions/extension_browsertest.h" |
34 #include "chrome/browser/extensions/extension_function_test_utils.h" | 34 #include "chrome/browser/extensions/extension_function_test_utils.h" |
(...skipping 2357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2392 | 2392 |
2393 // Close all windows via the menu item. | 2393 // Close all windows via the menu item. |
2394 CloseBrowserWindow(browser(), menu1.get(), LauncherContextMenu::MENU_CLOSE); | 2394 CloseBrowserWindow(browser(), menu1.get(), LauncherContextMenu::MENU_CLOSE); |
2395 EXPECT_EQ(0u, BrowserList::GetInstance()->size()); | 2395 EXPECT_EQ(0u, BrowserList::GetInstance()->size()); |
2396 | 2396 |
2397 // Check if "Close" is removed from the context menu. | 2397 // Check if "Close" is removed from the context menu. |
2398 std::unique_ptr<LauncherContextMenu> menu2 = CreateBrowserItemContextMenu(); | 2398 std::unique_ptr<LauncherContextMenu> menu2 = CreateBrowserItemContextMenu(); |
2399 ASSERT_FALSE( | 2399 ASSERT_FALSE( |
2400 IsItemPresentInMenu(menu2.get(), LauncherContextMenu::MENU_CLOSE)); | 2400 IsItemPresentInMenu(menu2.get(), LauncherContextMenu::MENU_CLOSE)); |
2401 } | 2401 } |
OLD | NEW |