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

Side by Side Diff: chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_browsertest.cc

Issue 2734733002: Revert "chromeos: Move files in //ash/common to //ash, part 3" (Closed)
Patch Set: Created 3 years, 9 months 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 unified diff | Download patch
OLDNEW
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/wm_shell.h"
10 #include "ash/common/wm_window.h"
9 #include "ash/public/cpp/window_properties.h" 11 #include "ash/public/cpp/window_properties.h"
10 #include "ash/shelf/app_list_button.h" 12 #include "ash/shelf/app_list_button.h"
11 #include "ash/shelf/shelf_button.h" 13 #include "ash/shelf/shelf_button.h"
12 #include "ash/shelf/shelf_constants.h" 14 #include "ash/shelf/shelf_constants.h"
13 #include "ash/shelf/shelf_model.h" 15 #include "ash/shelf/shelf_model.h"
14 #include "ash/shelf/shelf_view.h" 16 #include "ash/shelf/shelf_view.h"
15 #include "ash/shelf/shelf_widget.h" 17 #include "ash/shelf/shelf_widget.h"
16 #include "ash/shelf/wm_shelf.h" 18 #include "ash/shelf/wm_shelf.h"
17 #include "ash/shell.h" 19 #include "ash/shell.h"
18 #include "ash/test/shelf_view_test_api.h" 20 #include "ash/test/shelf_view_test_api.h"
19 #include "ash/wm/window_properties.h" 21 #include "ash/wm/window_properties.h"
20 #include "ash/wm/window_state.h" 22 #include "ash/wm/window_state.h"
21 #include "ash/wm/window_state_aura.h" 23 #include "ash/wm/window_state_aura.h"
22 #include "ash/wm/window_util.h" 24 #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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698