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

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

Issue 1553623002: Remove random lonely semicolons. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix formatting Created 5 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
Index: content/renderer/media/media_stream_video_capturer_source_unittest.cc
diff --git a/content/renderer/media/media_stream_video_capturer_source_unittest.cc b/content/renderer/media/media_stream_video_capturer_source_unittest.cc
index 79a2298611a75ef812fa868fbfee92166027bd0f..b26d74d5869c796c64bc13765cccaa28b454c56d 100644
--- a/content/renderer/media/media_stream_video_capturer_source_unittest.cc
+++ b/content/renderer/media/media_stream_video_capturer_source_unittest.cc
@@ -57,7 +57,6 @@ class MockVideoCapturerSource : public media::VideoCapturerSource {
formats.push_back(kFormatLarge);
callback.Run(formats);
}
-
};
class MediaStreamVideoCapturerSourceTest : public testing::Test {
@@ -214,8 +213,7 @@ TEST_F(MediaStreamVideoCapturerSourceTest,
StartCapture(
testing::Field(&media::VideoCaptureParams::resolution_change_policy,
media::RESOLUTION_POLICY_FIXED_ASPECT_RATIO),
- _, _))
- ;
+ _, _));
blink::WebMediaStreamTrack track = StartSource();
// When the track goes out of scope, the source will be stopped.
EXPECT_CALL(mock_delegate(), StopCapture());
@@ -249,8 +247,7 @@ TEST_F(MediaStreamVideoCapturerSourceTest,
StartCapture(
testing::Field(&media::VideoCaptureParams::resolution_change_policy,
media::RESOLUTION_POLICY_ANY_WITHIN_LIMIT),
- _, _))
- ;
+ _, _));
blink::WebMediaStreamTrack track = StartSource();
// When the track goes out of scope, the source will be stopped.
EXPECT_CALL(mock_delegate(), StopCapture());

Powered by Google App Engine
This is Rietveld 408576698