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

Unified Diff: remoting/host/chromeos/aura_desktop_capturer.h

Issue 866153003: Update {virtual,override,final} to follow C++11 style in remoting, round 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « no previous file | remoting/host/chromeos/skia_bitmap_desktop_frame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/chromeos/aura_desktop_capturer.h
diff --git a/remoting/host/chromeos/aura_desktop_capturer.h b/remoting/host/chromeos/aura_desktop_capturer.h
index 4ccd5db8a20128df2fee7222dd95f4543dec470e..16c6f85fd4a3b69d6308a8df072cc86d63435782 100644
--- a/remoting/host/chromeos/aura_desktop_capturer.h
+++ b/remoting/host/chromeos/aura_desktop_capturer.h
@@ -25,11 +25,11 @@ namespace remoting {
class AuraDesktopCapturer : public webrtc::DesktopCapturer {
public:
AuraDesktopCapturer();
- virtual ~AuraDesktopCapturer();
+ ~AuraDesktopCapturer() override;
// webrtc::DesktopCapturer implementation.
- virtual void Start(webrtc::DesktopCapturer::Callback* callback) override;
- virtual void Capture(const webrtc::DesktopRegion& region) override;
+ void Start(webrtc::DesktopCapturer::Callback* callback) override;
+ void Capture(const webrtc::DesktopRegion& region) override;
private:
friend class AuraDesktopCapturerTest;
« no previous file with comments | « no previous file | remoting/host/chromeos/skia_bitmap_desktop_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698