HomeSort by relevance Sort by last modified time
    Searched refs:video_control (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/remoting/protocol/
host_stub.h 35 virtual void ControlVideo(const VideoControl& video_control) = 0;
client_control_dispatcher.h 39 virtual void ControlVideo(const VideoControl& video_control) OVERRIDE;
client_control_dispatcher.cc 92 void ClientControlDispatcher::ControlVideo(const VideoControl& video_control) {
94 message.mutable_video_control()->CopyFrom(video_control);
host_control_dispatcher.cc 82 host_stub_->ControlVideo(message->video_control());
protocol_mock_objects.h 115 MOCK_METHOD1(ControlVideo, void(const VideoControl& video_control));
  /external/chromium_org/remoting/host/
client_session.cc 136 void ClientSession::ControlVideo(const protocol::VideoControl& video_control) {
141 if (video_control.has_enable()) {
143 << video_control.enable() << ")";
144 pause_video_ = !video_control.enable();
148 if (video_control.has_lossless_encode()) {
150 << video_control.lossless_encode() << ")";
151 lossless_video_encode_ = video_control.lossless_encode();
155 if (video_control.has_lossless_color()) {
157 << video_control.lossless_color() << ")";
158 lossless_video_color_ = video_control.lossless_color()
    [all...]
client_session_unittest.cc 800 protocol::VideoControl video_control; local
801 video_control.set_enable(false);
802 video_control.set_lossless_encode(true);
803 video_control.set_lossless_color(true);
804 client_session_->ControlVideo(video_control);
client_session.h 111 const protocol::VideoControl& video_control) OVERRIDE;
  /external/chromium_org/media/video/capture/win/
video_capture_device_win.cc 490 ScopedComPtr<IAMVideoControl> video_control; local
491 hr = capture_filter_.QueryInterface(video_control.Receive());
531 if (video_control) {
542 hr = video_control->GetFrameRateList(output_capture_pin_, i, size,
  /external/chromium_org/remoting/client/plugin/
chromoting_instance.cc 925 protocol::VideoControl video_control; local
    [all...]

Completed in 168 milliseconds