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

Unified Diff: trunk/src/ash/display/display_manager.cc

Issue 271973002: Revert 268933 "Helpful message for not checking SupportsMultiple..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/ash/display/display_manager.cc
===================================================================
--- trunk/src/ash/display/display_manager.cc (revision 269080)
+++ trunk/src/ash/display/display_manager.cc (working copy)
@@ -632,9 +632,11 @@
void DisplayManager::UpdateDisplays(
const std::vector<DisplayInfo>& updated_display_info_list) {
#if defined(OS_WIN)
- 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()";
+ 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()";
+ }
#endif
DisplayInfoList new_display_info_list = updated_display_info_list;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698