diff options
Diffstat (limited to 'remoting/host/plugin/daemon_controller_win.cc')
-rw-r--r-- | remoting/host/plugin/daemon_controller_win.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/remoting/host/plugin/daemon_controller_win.cc b/remoting/host/plugin/daemon_controller_win.cc index c7b484d..937728f 100644 --- a/remoting/host/plugin/daemon_controller_win.cc +++ b/remoting/host/plugin/daemon_controller_win.cc @@ -81,6 +81,7 @@ class DaemonControllerWin : public remoting::DaemonController { const CompletionCallback& done_callback) OVERRIDE; virtual void Stop(const CompletionCallback& done_callback) OVERRIDE; virtual void SetWindow(void* window_handle) OVERRIDE; + virtual void GetVersion(const GetVersionCallback& done_callback) OVERRIDE; private: // Activates an unprivileged instance of the daemon controller and caches it. @@ -246,6 +247,11 @@ void DaemonControllerWin::SetWindow(void* window_handle) { window_handle)); } +void DaemonControllerWin::GetVersion(const GetVersionCallback& done_callback) { + NOTIMPLEMENTED(); + done_callback.Run(""); +} + HRESULT DaemonControllerWin::ActivateController() { DCHECK(worker_thread_.message_loop_proxy()->BelongsToCurrentThread()); |