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

Unified Diff: remoting/host/shaped_desktop_capturer_unittest.cc

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/shaped_desktop_capturer.h ('k') | remoting/host/signaling_connector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/shaped_desktop_capturer_unittest.cc
diff --git a/remoting/host/shaped_desktop_capturer_unittest.cc b/remoting/host/shaped_desktop_capturer_unittest.cc
index 08d78f4a55e1b2213002568c2020a5a6a6487b2e..3289240b1092f3af4fb5ab7545f053d58364bede 100644
--- a/remoting/host/shaped_desktop_capturer_unittest.cc
+++ b/remoting/host/shaped_desktop_capturer_unittest.cc
@@ -25,11 +25,11 @@ class FakeDesktopShapeTracker : public DesktopShapeTracker {
return result;
}
- virtual void RefreshDesktopShape() OVERRIDE {
+ virtual void RefreshDesktopShape() override {
shape_ = CreateShape();
}
- virtual const webrtc::DesktopRegion& desktop_shape() OVERRIDE {
+ virtual const webrtc::DesktopRegion& desktop_shape() override {
// desktop_shape() can't be called before RefreshDesktopShape().
EXPECT_FALSE(shape_.is_empty());
return shape_;
@@ -43,11 +43,11 @@ class ShapedDesktopCapturerTest : public testing::Test,
public webrtc::DesktopCapturer::Callback {
public:
// webrtc::DesktopCapturer::Callback interface
- virtual webrtc::SharedMemory* CreateSharedMemory(size_t size) OVERRIDE {
+ virtual webrtc::SharedMemory* CreateSharedMemory(size_t size) override {
return NULL;
}
- virtual void OnCaptureCompleted(webrtc::DesktopFrame* frame) OVERRIDE {
+ virtual void OnCaptureCompleted(webrtc::DesktopFrame* frame) override {
last_frame_.reset(frame);
}
« no previous file with comments | « remoting/host/shaped_desktop_capturer.h ('k') | remoting/host/signaling_connector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698