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

Unified Diff: content/renderer/media/rtc_video_decoder_unittest.cc

Issue 8786013: Replace media::Limits struct with media::limits namespace and update documentation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix logic Created 9 years 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
« no previous file with comments | « content/renderer/media/rtc_video_decoder.cc ('k') | media/audio/audio_parameters.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/rtc_video_decoder_unittest.cc
diff --git a/content/renderer/media/rtc_video_decoder_unittest.cc b/content/renderer/media/rtc_video_decoder_unittest.cc
index 903cfc308505230593792acb43601e783a2d3b51..73d2bb46ecf6487dcecde95179a0826e89f056f4 100644
--- a/content/renderer/media/rtc_video_decoder_unittest.cc
+++ b/content/renderer/media/rtc_video_decoder_unittest.cc
@@ -30,7 +30,6 @@ using ::testing::SetArgumentPointee;
using ::testing::StrictMock;
using ::testing::WithArg;
using ::testing::Invoke;
-using media::Limits;
using media::MockStatisticsCallback;
using media::MockVideoRenderer;
using media::MockFilterHost;
@@ -205,7 +204,7 @@ TEST_F(RTCVideoDecoderTest, DoRenderFrame) {
NullVideoFrame video_frame;
- for (size_t i = 0; i < Limits::kMaxVideoFrames; ++i) {
+ for (size_t i = 0; i < media::limits::kMaxVideoFrames; ++i) {
decoder_->RenderFrame(&video_frame);
}
« no previous file with comments | « content/renderer/media/rtc_video_decoder.cc ('k') | media/audio/audio_parameters.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698