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

Unified Diff: ash/test/cursor_manager_test_api.cc

Issue 2932563002: Implement cursor changing on Mushrome (Closed)
Patch Set: Remove last NOTIMPLEMENTED for this patch Created 3 years, 6 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/cursor_manager_test_api.cc
diff --git a/ash/test/cursor_manager_test_api.cc b/ash/test/cursor_manager_test_api.cc
index 4d3e87888d3f5ab918e3ef22e944c43bdcac347c..c1f9636e56ec3c716ef23191b5434b6cb0255302 100644
--- a/ash/test/cursor_manager_test_api.cc
+++ b/ash/test/cursor_manager_test_api.cc
@@ -30,15 +30,11 @@ gfx::NativeCursor CursorManagerTestApi::GetCurrentCursor() const {
display::Display::Rotation CursorManagerTestApi::GetCurrentCursorRotation()
const {
- return ShellTestApi(Shell::Get())
- .ash_native_cursor_manager()
- ->image_cursors_->GetRotation();
+ return ShellTestApi(Shell::Get()).ash_native_cursor_manager()->GetRotation();
}
float CursorManagerTestApi::GetCurrentCursorScale() const {
- return ShellTestApi(Shell::Get())
- .ash_native_cursor_manager()
- ->image_cursors_->GetScale();
+ return ShellTestApi(Shell::Get()).ash_native_cursor_manager()->GetScale();
}
} // namespace test

Powered by Google App Engine
This is Rietveld 408576698