| Index: media/filters/frame_processor_unittest.cc
|
| diff --git a/media/filters/frame_processor_unittest.cc b/media/filters/frame_processor_unittest.cc
|
| index 7ee996cc9bb493a80e68b2fcde1b6f6bde0fb955..21672f16d4e4e29a5a515cac23c4f1ba6b674737 100644
|
| --- a/media/filters/frame_processor_unittest.cc
|
| +++ b/media/filters/frame_processor_unittest.cc
|
| @@ -104,7 +104,7 @@ class FrameProcessorTest : public testing::TestWithParam<bool> {
|
| BufferQueue buffers;
|
| for (size_t i = 0; i < timestamps.size(); i++) {
|
| bool is_keyframe = false;
|
| - if (EndsWith(timestamps[i], "K", true)) {
|
| + if (base::EndsWith(timestamps[i], "K", true)) {
|
| is_keyframe = true;
|
| // Remove the "K" off of the token.
|
| timestamps[i] = timestamps[i].substr(0, timestamps[i].length() - 1);
|
|
|