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

Unified Diff: webrtc/modules/desktop_capture/desktop_frame.h

Issue 1323453003: Fixes for PNaCl build of remoting client plugin in chromium. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 years, 4 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 | « webrtc/modules/desktop_capture/BUILD.gn ('k') | webrtc/modules/desktop_capture/desktop_region.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/desktop_capture/desktop_frame.h
diff --git a/webrtc/modules/desktop_capture/desktop_frame.h b/webrtc/modules/desktop_capture/desktop_frame.h
index 29d5076959583ff11ff25ad520ad9ff3c59be738..d7376b481a2674de8d64bf3f72c276de370718aa 100644
--- a/webrtc/modules/desktop_capture/desktop_frame.h
+++ b/webrtc/modules/desktop_capture/desktop_frame.h
@@ -98,7 +98,7 @@ class DesktopFrame {
class BasicDesktopFrame : public DesktopFrame {
public:
explicit BasicDesktopFrame(DesktopSize size);
- virtual ~BasicDesktopFrame();
+ ~BasicDesktopFrame() override;
// Creates a BasicDesktopFrame that contains copy of |frame|.
static DesktopFrame* CopyOf(const DesktopFrame& frame);
@@ -114,7 +114,7 @@ class SharedMemoryDesktopFrame : public DesktopFrame {
SharedMemoryDesktopFrame(DesktopSize size,
int stride,
SharedMemory* shared_memory);
- virtual ~SharedMemoryDesktopFrame();
+ ~SharedMemoryDesktopFrame() override;
private:
DISALLOW_COPY_AND_ASSIGN(SharedMemoryDesktopFrame);
« no previous file with comments | « webrtc/modules/desktop_capture/BUILD.gn ('k') | webrtc/modules/desktop_capture/desktop_region.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698