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

Unified Diff: content/browser/media/capture/web_contents_video_capture_device_unittest.cc

Issue 678073006: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bogus formatting Created 6 years, 2 months 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/browser/media/capture/web_contents_video_capture_device_unittest.cc
diff --git a/content/browser/media/capture/web_contents_video_capture_device_unittest.cc b/content/browser/media/capture/web_contents_video_capture_device_unittest.cc
index 96fe4baad9dd113b615648528c3a9cc04a1cd3e7..09f84454f601c8acfe1fee92c1e31122a31b6858 100644
--- a/content/browser/media/capture/web_contents_video_capture_device_unittest.cc
+++ b/content/browser/media/capture/web_contents_video_capture_device_unittest.cc
@@ -510,7 +510,7 @@ class WebContentsVideoCaptureDeviceTest : public testing::Test {
}
protected:
- virtual void SetUp() {
+ void SetUp() override {
gfx::Screen::SetScreenInstance(gfx::SCREEN_TYPE_NATIVE, &fake_screen_);
ASSERT_EQ(&fake_screen_, gfx::Screen::GetNativeScreen());
@@ -545,7 +545,7 @@ class WebContentsVideoCaptureDeviceTest : public testing::Test {
base::RunLoop().RunUntilIdle();
}
- virtual void TearDown() {
+ void TearDown() override {
// Tear down in opposite order of set-up.
// The device is destroyed asynchronously, and will notify the

Powered by Google App Engine
This is Rietveld 408576698