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

Side by Side Diff: chrome/browser/media/webrtc_browsertest_base.cc

Issue 307253002: Temporarily disabling audio quality test on win 8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/media/webrtc_browsertest_base.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/media/webrtc_browsertest_base.h" 5 #include "chrome/browser/media/webrtc_browsertest_base.h"
6 6
7 #include "base/lazy_instance.h" 7 #include "base/lazy_instance.h"
8 #include "base/strings/string_util.h" 8 #include "base/strings/string_util.h"
9 #include "base/strings/stringprintf.h" 9 #include "base/strings/stringprintf.h"
10 #include "chrome/browser/chrome_notification_types.h" 10 #include "chrome/browser/chrome_notification_types.h"
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 return result == "has-video-source"; 353 return result == "has-video-source";
354 } 354 }
355 355
356 bool WebRtcTestBase::OnWinXp() const { 356 bool WebRtcTestBase::OnWinXp() const {
357 #if defined(OS_WIN) 357 #if defined(OS_WIN)
358 return base::win::GetVersion() <= base::win::VERSION_XP; 358 return base::win::GetVersion() <= base::win::VERSION_XP;
359 #else 359 #else
360 return false; 360 return false;
361 #endif 361 #endif
362 } 362 }
363
364 bool WebRtcTestBase::OnWin8() const {
365 #if defined(OS_WIN)
366 return base::win::GetVersion() > base::win::VERSION_WIN7;
367 #else
368 return false;
369 #endif
370 }
OLDNEW
« no previous file with comments | « chrome/browser/media/webrtc_browsertest_base.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698