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

Side by Side Diff: trunk/src/content/browser/gpu/compositor_util_browsertest.cc

Issue 23775004: Revert 221114 "Enable GPU blacklist in tests." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 3 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "content/browser/gpu/compositor_util.h"
6 #include "content/test/content_browser_test.h"
7
8 #if defined(OS_WIN)
9 #include "base/win/windows_version.h"
10 #endif
11
12 namespace content {
13
14 typedef ContentBrowserTest CompositorUtilTest;
15
16 // Test that threaded compositing and FCM are in the expected mode on the bots
17 // for all platforms.
18 IN_PROC_BROWSER_TEST_F(CompositorUtilTest, CompositingModeAsExpected) {
19 enum CompositingMode {
20 DISABLED,
21 ENABLED,
22 THREADED,
23 } expected_mode = DISABLED;
24 #if defined(OS_ANDROID) || defined(USE_AURA)
25 expected_mode = THREADED;
26 #endif
27
28 EXPECT_EQ(expected_mode == ENABLED || expected_mode == THREADED,
29 IsForceCompositingModeEnabled());
30 EXPECT_EQ(expected_mode == THREADED, IsThreadedCompositingEnabled());
31 }
32
33 }
OLDNEW
« no previous file with comments | « trunk/src/content/browser/gpu/compositor_util.cc ('k') | trunk/src/content/browser/gpu/gpu_data_manager_impl_private.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698