| Index: content/common/gpu/media/video_decode_accelerator_unittest.cc
|
| diff --git a/content/common/gpu/media/video_decode_accelerator_unittest.cc b/content/common/gpu/media/video_decode_accelerator_unittest.cc
|
| index 36466304a3c433db1a365f94ea9e4bf8bdd1d616..eeb89d1728a9cab03ec2d2bf708fbf97d25b5306 100644
|
| --- a/content/common/gpu/media/video_decode_accelerator_unittest.cc
|
| +++ b/content/common/gpu/media/video_decode_accelerator_unittest.cc
|
| @@ -1196,17 +1196,6 @@ class VideoDecodeAcceleratorParamTest
|
| base::Tuple<int, int, int, ResetPoint, ClientState, bool, bool> > {
|
| };
|
|
|
| -// Helper so that gtest failures emit a more readable version of the tuple than
|
| -// its byte representation.
|
| -::std::ostream& operator<<(
|
| - ::std::ostream& os,
|
| - const base::Tuple<int, int, int, ResetPoint, ClientState, bool, bool>& t) {
|
| - return os << base::get<0>(t) << ", " << base::get<1>(t) << ", "
|
| - << base::get<2>(t) << ", " << base::get<3>(t) << ", "
|
| - << base::get<4>(t) << ", " << base::get<5>(t) << ", "
|
| - << base::get<6>(t);
|
| -}
|
| -
|
| // Wait for |note| to report a state and if it's not |expected_state| then
|
| // assert |client| has deleted its decoder.
|
| static void AssertWaitForStateOrDeleted(
|
|
|