| Index: ash/display/display_manager.cc
|
| diff --git a/ash/display/display_manager.cc b/ash/display/display_manager.cc
|
| index 0f3bddaaf140c5b186d3b2de6a8ee3b1d3d5c211..9feca525dd5b3d160331e5abe1c476760200b23d 100644
|
| --- a/ash/display/display_manager.cc
|
| +++ b/ash/display/display_manager.cc
|
| @@ -632,11 +632,9 @@ void DisplayManager::UpdateDisplays() {
|
| void DisplayManager::UpdateDisplays(
|
| const std::vector<DisplayInfo>& updated_display_info_list) {
|
| #if defined(OS_WIN)
|
| - if (base::win::GetVersion() >= base::win::VERSION_WIN8) {
|
| - DCHECK_EQ(1u, updated_display_info_list.size()) <<
|
| - "Multiple display test does not work on Win8 bots. Please "
|
| - "skip (don't disable) the test using SupportsMultipleDisplays()";
|
| - }
|
| + DCHECK_EQ(1u, updated_display_info_list.size()) <<
|
| + ": Multiple display test does not work on Windows bots. Please "
|
| + "skip (don't disable) the test using SupportsMultipleDisplays()";
|
| #endif
|
|
|
| DisplayInfoList new_display_info_list = updated_display_info_list;
|
|
|