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

Unified Diff: remoting/host/cast_video_capturer_adapter.h

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/cast_extension_session.cc ('k') | remoting/host/chromeos/aura_desktop_capturer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/cast_video_capturer_adapter.h
diff --git a/remoting/host/cast_video_capturer_adapter.h b/remoting/host/cast_video_capturer_adapter.h
index 3168859dd45c59caa1106b96711c4f0087c7e5ad..fd3ab75a0ca92b759210fa45ca62b30be1e3dfd1 100644
--- a/remoting/host/cast_video_capturer_adapter.h
+++ b/remoting/host/cast_video_capturer_adapter.h
@@ -39,21 +39,21 @@ class CastVideoCapturerAdapter : public cricket::VideoCapturer,
virtual ~CastVideoCapturerAdapter();
// webrtc::DesktopCapturer::Callback implementation.
- virtual webrtc::SharedMemory* CreateSharedMemory(size_t size) OVERRIDE;
+ virtual webrtc::SharedMemory* CreateSharedMemory(size_t size) override;
// Converts |frame| to a cricket::CapturedFrame and emits that via
// SignalFrameCaptured for the base::VideoCapturer implementation to process.
- virtual void OnCaptureCompleted(webrtc::DesktopFrame* frame) OVERRIDE;
+ virtual void OnCaptureCompleted(webrtc::DesktopFrame* frame) override;
// cricket::VideoCapturer implementation.
virtual bool GetBestCaptureFormat(const cricket::VideoFormat& desired,
- cricket::VideoFormat* best_format) OVERRIDE;
+ cricket::VideoFormat* best_format) override;
virtual cricket::CaptureState Start(
- const cricket::VideoFormat& capture_format) OVERRIDE;
- virtual bool Pause(bool pause) OVERRIDE;
- virtual void Stop() OVERRIDE;
- virtual bool IsRunning() OVERRIDE;
- virtual bool IsScreencast() const OVERRIDE;
- virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) OVERRIDE;
+ const cricket::VideoFormat& capture_format) override;
+ virtual bool Pause(bool pause) override;
+ virtual void Stop() override;
+ virtual bool IsRunning() override;
+ virtual bool IsScreencast() const override;
+ virtual bool GetPreferredFourccs(std::vector<uint32>* fourccs) override;
private:
// Kicks off the next frame capture using |desktop_capturer_|.
« no previous file with comments | « remoting/host/cast_extension_session.cc ('k') | remoting/host/chromeos/aura_desktop_capturer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698