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

Unified Diff: cc/resources/video_resource_updater_unittest.cc

Issue 2763503002: Move HalfFloatMaker to media (Closed)
Patch Set: Moved HalffloatMaker and its implementation from cc to media 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..0e79985b9eb79c8978ecc2bcc7db0c9052db5b19 100644
--- a/cc/resources/video_resource_updater_unittest.cc
+++ b/cc/resources/video_resource_updater_unittest.cc
@@ -544,7 +544,7 @@ 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;
+ std::unique_ptr<media::HalfFloatMaker> half_float_maker;
half_float_maker = VideoResourceUpdater::NewHalfFloatMaker(bits);
int num_values = 1 << bits;
for (int i = 0; i < num_values; i++)

Powered by Google App Engine
This is Rietveld 408576698