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

Unified Diff: cc/resources/video_resource_updater_unittest.cc

Issue 2763503002: Move HalfFloatMaker to media (Closed)
Patch Set: Moved #include "half_float_maker.h" to video_resource_updater.cc Created 3 years, 9 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
Index: cc/resources/video_resource_updater_unittest.cc
diff --git a/cc/resources/video_resource_updater_unittest.cc b/cc/resources/video_resource_updater_unittest.cc
index 4b54fbe759f3cfb2c014f880d73c6b21bc93418d..ffb983638e639f7b2cc06abd53ff1a1c837e998d 100644
--- a/cc/resources/video_resource_updater_unittest.cc
+++ b/cc/resources/video_resource_updater_unittest.cc
@@ -544,8 +544,8 @@ TEST_F(VideoResourceUpdaterTest, MakeHalfFloatTest) {
unsigned short integers[1 << 16];
unsigned short half_floats[1 << 16];
for (int bits = 9; bits <= 16; bits++) {
- std::unique_ptr<VideoResourceUpdater::HalfFloatMaker> half_float_maker;
- half_float_maker = VideoResourceUpdater::NewHalfFloatMaker(bits);
+ std::unique_ptr<media::HalfFloatMaker> half_float_maker;
+ half_float_maker = media::HalfFloatMaker::NewHalfFloatMaker(bits);
int num_values = 1 << bits;
for (int i = 0; i < num_values; i++)
integers[i] = i;

Powered by Google App Engine
This is Rietveld 408576698