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

Unified Diff: remoting/host/video_scheduler_unittest.cc

Issue 667123002: Standardize usage of virtual/override/final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « remoting/host/video_scheduler.h ('k') | remoting/protocol/audio_reader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/video_scheduler_unittest.cc
diff --git a/remoting/host/video_scheduler_unittest.cc b/remoting/host/video_scheduler_unittest.cc
index 9234d67f73543debc85ce825a43afff294e1d633..3db994c9a1eab750c40198f128885cc635f2378a 100644
--- a/remoting/host/video_scheduler_unittest.cc
+++ b/remoting/host/video_scheduler_unittest.cc
@@ -81,7 +81,7 @@ class ThreadCheckVideoEncoder : public VideoEncoderVerbatim {
scoped_refptr<base::SingleThreadTaskRunner> task_runner)
: task_runner_(task_runner) {
}
- virtual ~ThreadCheckVideoEncoder() {
+ ~ThreadCheckVideoEncoder() override {
EXPECT_TRUE(task_runner_->BelongsToCurrentThread());
}
@@ -97,7 +97,7 @@ class ThreadCheckDesktopCapturer : public FakeDesktopCapturer {
scoped_refptr<base::SingleThreadTaskRunner> task_runner)
: task_runner_(task_runner) {
}
- virtual ~ThreadCheckDesktopCapturer() {
+ ~ThreadCheckDesktopCapturer() override {
EXPECT_TRUE(task_runner_->BelongsToCurrentThread());
}
@@ -113,7 +113,7 @@ class ThreadCheckMouseCursorMonitor : public FakeMouseCursorMonitor {
scoped_refptr<base::SingleThreadTaskRunner> task_runner)
: task_runner_(task_runner) {
}
- virtual ~ThreadCheckMouseCursorMonitor() {
+ ~ThreadCheckMouseCursorMonitor() override {
EXPECT_TRUE(task_runner_->BelongsToCurrentThread());
}
« no previous file with comments | « remoting/host/video_scheduler.h ('k') | remoting/protocol/audio_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698