Fix some chromium-style warnings in webrtc/modules/desktop_capture/

BUG=163
R=sergeyu@chromium.org

Review URL: https://webrtc-codereview.appspot.com/1904004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4446 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pbos@webrtc.org 2013-07-31 15:32:43 +00:00
parent 0193158634
commit e72428442d
2 changed files with 3 additions and 0 deletions

View File

@ -23,6 +23,8 @@ DesktopRegion::Row::Row(int32_t top, int32_t bottom)
: top(top), bottom(bottom) {
}
DesktopRegion::Row::~Row() {}
DesktopRegion::DesktopRegion() {}
DesktopRegion::DesktopRegion(const DesktopRect& rect) {

View File

@ -48,6 +48,7 @@ class DesktopRegion {
// have the same vertical position.
struct Row {
Row(int32_t top, int32_t bottom);
~Row();
int32_t top;
int32_t bottom;