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

Unified Diff: chrome/test/perf/rendering/throughput_tests.cc

Issue 15827008: Move gpu_test_config stuff from content/ to gpu/ (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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 | « chrome/test/perf/rendering/latency_tests.cc ('k') | content/browser/gpu/gpu_memory_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/perf/rendering/throughput_tests.cc
===================================================================
--- chrome/test/perf/rendering/throughput_tests.cc (revision 202179)
+++ chrome/test/perf/rendering/throughput_tests.cc (working copy)
@@ -30,8 +30,8 @@
#include "content/public/common/content_switches.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/test_utils.h"
-#include "content/test/gpu/gpu_test_config.h"
#include "googleurl/src/gurl.h"
+#include "gpu/config/gpu_test_config.h"
#include "net/base/net_util.h"
#include "net/dns/mock_host_resolver.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -545,21 +545,21 @@
IN_PROC_BROWSER_TEST_F(ThroughputTestSW, CanvasToCanvasDrawSW) {
if (IsGpuAvailable() &&
- GPUTestBotConfig::CurrentConfigMatches("MAC AMD"))
+ gpu::GPUTestBotConfig::CurrentConfigMatches("MAC AMD"))
return;
RunTest("canvas2d_balls_draw_from_canvas", kNone);
}
IN_PROC_BROWSER_TEST_F(ThroughputTestGPU, CanvasToCanvasDrawGPU) {
if (IsGpuAvailable() &&
- GPUTestBotConfig::CurrentConfigMatches("MAC AMD"))
+ gpu::GPUTestBotConfig::CurrentConfigMatches("MAC AMD"))
return;
RunTest("canvas2d_balls_draw_from_canvas", kNone | kIsGpuCanvasTest);
}
IN_PROC_BROWSER_TEST_F(ThroughputTestSW, CanvasTextSW) {
if (IsGpuAvailable() &&
- GPUTestBotConfig::CurrentConfigMatches("MAC AMD"))
+ gpu::GPUTestBotConfig::CurrentConfigMatches("MAC AMD"))
return;
RunTest("canvas2d_balls_text", kNone);
}
@@ -582,7 +582,7 @@
IN_PROC_BROWSER_TEST_F(ThroughputTestGPU, CanvasSingleImageGPU) {
if (IsGpuAvailable() &&
- GPUTestBotConfig::CurrentConfigMatches("MAC AMD"))
+ gpu::GPUTestBotConfig::CurrentConfigMatches("MAC AMD"))
return;
RunCanvasBenchTest("single_image", kNone | kIsGpuCanvasTest);
}
« no previous file with comments | « chrome/test/perf/rendering/latency_tests.cc ('k') | content/browser/gpu/gpu_memory_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698