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

Unified Diff: ash/shell_unittest.cc

Issue 2808723004: Renames WmShell to ShellPort (Closed)
Patch Set: feedback Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: ash/shell_unittest.cc
diff --git a/ash/shell_unittest.cc b/ash/shell_unittest.cc
index 5c78575072b1e8018e0b2082efbb27455aa652bd..b8e1c2c5c0574f3dcc2822a4820f9a1adeab9209 100644
--- a/ash/shell_unittest.cc
+++ b/ash/shell_unittest.cc
@@ -15,12 +15,12 @@
#include "ash/shelf/shelf_layout_manager.h"
#include "ash/shelf/shelf_widget.h"
#include "ash/shelf/wm_shelf.h"
+#include "ash/shell_port.h"
#include "ash/test/ash_test_base.h"
#include "ash/test/shell_test_api.h"
#include "ash/test/test_session_controller_client.h"
#include "ash/wallpaper/wallpaper_widget_controller.h"
#include "ash/wm/window_util.h"
-#include "ash/wm_shell.h"
#include "ash/wm_window.h"
#include "base/macros.h"
#include "base/strings/utf_string_conversions.h"
@@ -351,7 +351,7 @@ TEST_F(ShellTest, LockScreenClosesActiveMenu) {
std::unique_ptr<ui::SimpleMenuModel> menu_model(
new ui::SimpleMenuModel(&menu_delegate));
menu_model->AddItem(0, base::ASCIIToUTF16("Menu item"));
- views::Widget* widget = WmShell::Get()
+ views::Widget* widget = ShellPort::Get()
->GetPrimaryRootWindow()
->GetRootWindowController()
->wallpaper_widget_controller()
@@ -463,7 +463,7 @@ TEST_F(ShellTest, ToggleAutoHide) {
// pre-target list.
TEST_F(ShellTest, TestPreTargetHandlerOrder) {
// TODO: investigate failure in mash, http://crbug.com/695758.
- if (WmShell::Get()->IsRunningInMash())
+ if (ShellPort::Get()->IsRunningInMash())
return;
Shell* shell = Shell::Get();
@@ -514,7 +514,7 @@ TEST_F(ShellTest2, DontCrashWhenWindowDeleted) {
// applicable to mash as all windows must be destroyed before ash, that isn't
// the case with classic-ash where embedders can separately create
// aura::Windows.
- if (WmShell::Get()->IsRunningInMash())
+ if (ShellPort::Get()->IsRunningInMash())
return;
window_.reset(new aura::Window(NULL));

Powered by Google App Engine
This is Rietveld 408576698