screencastid.h | 20 // Used for identifying a window or desktop to be screencast. 23 enum Type { INVALID, WINDOW, DESKTOP }; 31 : type_(DESKTOP), desktop_(id) { 36 const rtc::DesktopId& desktop() const { return desktop_; } function in class:cricket::ScreencastId 52 bool IsDesktop() const { return type_ == DESKTOP; } 62 return desktop_.Equals(other.desktop());
|