| 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;
|
|
|