diff options
author | mallinath@chromium.org <mallinath@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-16 22:40:36 +0000 |
---|---|---|
committer | mallinath@chromium.org <mallinath@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-16 22:40:36 +0000 |
commit | 3e975a787b7180d6eae63ca29f845af03edac32b (patch) | |
tree | f82e8fa723d6868f8d9cc12817542a7cf0bcbd37 /remoting/host/ipc_video_frame_capturer.cc | |
parent | 43ea25e38344ed0a097e0b90245088892be61da8 (diff) | |
download | chromium_src-3e975a787b7180d6eae63ca29f845af03edac32b.zip chromium_src-3e975a787b7180d6eae63ca29f845af03edac32b.tar.gz chromium_src-3e975a787b7180d6eae63ca29f845af03edac32b.tar.bz2 |
Roll libjingle+webrtc to r5397.
R=sergeyu@chromium.org, wjia@chromium.org
TBR=phoglund@chromium.org
Review URL: https://codereview.chromium.org/134633004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245355 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/ipc_video_frame_capturer.cc')
-rw-r--r-- | remoting/host/ipc_video_frame_capturer.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/remoting/host/ipc_video_frame_capturer.cc b/remoting/host/ipc_video_frame_capturer.cc index b4120e1..c56c20e 100644 --- a/remoting/host/ipc_video_frame_capturer.cc +++ b/remoting/host/ipc_video_frame_capturer.cc @@ -36,6 +36,16 @@ void IpcVideoFrameCapturer::SetMouseShapeObserver( mouse_shape_observer_ = mouse_shape_observer; } +bool IpcVideoFrameCapturer::GetScreenList(ScreenList* screens) { + NOTIMPLEMENTED(); + return false; +} + +bool IpcVideoFrameCapturer::SelectScreen(webrtc::ScreenId id) { + NOTIMPLEMENTED(); + return false; +} + void IpcVideoFrameCapturer::Capture(const webrtc::DesktopRegion& region) { DCHECK(!capture_pending_); capture_pending_ = true; |