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

Unified Diff: ash/test/test_session_state_delegate.cc

Issue 2908333003: [mus+ash] Removes WmWindow from ash (app_list, frame, metrics, session, system, wallpaper) (Closed)
Patch Set: [mus+ash] Removes WmWindow from ash (cleaning remaining wm_window.h in c/b/ui) Created 3 years, 7 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/test/test_session_state_delegate.cc
diff --git a/ash/test/test_session_state_delegate.cc b/ash/test/test_session_state_delegate.cc
index f59eb5124571088a9c54f64cb8220563d996f469..ed99b7112776857e4524f32042a374823fc3e6ae 100644
--- a/ash/test/test_session_state_delegate.cc
+++ b/ash/test/test_session_state_delegate.cc
@@ -14,12 +14,12 @@ void TestSessionStateDelegate::SetUserImage(const gfx::ImageSkia& user_image) {
user_image_ = user_image;
}
-bool TestSessionStateDelegate::ShouldShowAvatar(WmWindow* window) const {
+bool TestSessionStateDelegate::ShouldShowAvatar(aura::Window* window) const {
return !user_image_.isNull();
}
gfx::ImageSkia TestSessionStateDelegate::GetAvatarImageForWindow(
- WmWindow* window) const {
+ aura::Window* window) const {
return gfx::ImageSkia();
}

Powered by Google App Engine
This is Rietveld 408576698