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

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

Issue 1345433002: Add RTC_ prefix to contructormagic macros. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Formatting fix. Created 5 years, 3 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
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 d7376b481a2674de8d64bf3f72c276de370718aa..49b964630ce069ac1d1bfc277def563241a979b9 100644
--- a/webrtc/modules/desktop_capture/desktop_frame.h
+++ b/webrtc/modules/desktop_capture/desktop_frame.h
@@ -91,7 +91,7 @@ class DesktopFrame {
rtc::scoped_ptr<DesktopRegion> shape_;
private:
- DISALLOW_COPY_AND_ASSIGN(DesktopFrame);
+ RTC_DISALLOW_COPY_AND_ASSIGN(DesktopFrame);
};
// A DesktopFrame that stores data in the heap.
@@ -104,7 +104,7 @@ class BasicDesktopFrame : public DesktopFrame {
static DesktopFrame* CopyOf(const DesktopFrame& frame);
private:
- DISALLOW_COPY_AND_ASSIGN(BasicDesktopFrame);
+ RTC_DISALLOW_COPY_AND_ASSIGN(BasicDesktopFrame);
};
// A DesktopFrame that stores data in shared memory.
@@ -117,7 +117,7 @@ class SharedMemoryDesktopFrame : public DesktopFrame {
~SharedMemoryDesktopFrame() override;
private:
- DISALLOW_COPY_AND_ASSIGN(SharedMemoryDesktopFrame);
+ RTC_DISALLOW_COPY_AND_ASSIGN(SharedMemoryDesktopFrame);
};
} // namespace webrtc
« no previous file with comments | « webrtc/modules/desktop_capture/desktop_and_cursor_composer.cc ('k') | webrtc/modules/desktop_capture/desktop_frame_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698