| Index: chrome/browser/extensions/display_info_provider_chromeos_unittest.cc
|
| diff --git a/chrome/browser/extensions/display_info_provider_chromeos_unittest.cc b/chrome/browser/extensions/display_info_provider_chromeos_unittest.cc
|
| index 125c080f81bcb02255e9205e5e7d18ebeccfc20a..da316b62221f7309f437666f84eee84da586276a 100644
|
| --- a/chrome/browser/extensions/display_info_provider_chromeos_unittest.cc
|
| +++ b/chrome/browser/extensions/display_info_provider_chromeos_unittest.cc
|
| @@ -1150,7 +1150,7 @@ TEST_F(DisplayInfoProviderChromeosTest, DisplayMode) {
|
| // Get the currently active mode and one other mode to switch to.
|
| int64_t id;
|
| base::StringToInt64(primary_info.id, &id);
|
| - scoped_refptr<ash::ManagedDisplayMode> active_mode =
|
| + scoped_refptr<display::ManagedDisplayMode> active_mode =
|
| GetDisplayManager()->GetActiveModeForDisplayId(id);
|
| const api::system_display::DisplayMode* cur_mode = nullptr;
|
| const api::system_display::DisplayMode* other_mode = nullptr;
|
| @@ -1167,8 +1167,8 @@ TEST_F(DisplayInfoProviderChromeosTest, DisplayMode) {
|
| ASSERT_NE(other_mode, cur_mode);
|
|
|
| // Verify that other_mode differs from the active mode.
|
| - scoped_refptr<ash::ManagedDisplayMode> other_mode_ash(
|
| - new ash::ManagedDisplayMode(
|
| + scoped_refptr<display::ManagedDisplayMode> other_mode_ash(
|
| + new display::ManagedDisplayMode(
|
| gfx::Size(other_mode->width_in_native_pixels,
|
| other_mode->height_in_native_pixels),
|
| active_mode->refresh_rate(), active_mode->is_interlaced(),
|
|
|