diff options
Diffstat (limited to 'remoting/client')
-rw-r--r-- | remoting/client/chromoting_view.cc | 2 | ||||
-rw-r--r-- | remoting/client/chromoting_view.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/remoting/client/chromoting_view.cc b/remoting/client/chromoting_view.cc index ba34a5d..5df85b67 100644 --- a/remoting/client/chromoting_view.cc +++ b/remoting/client/chromoting_view.cc @@ -15,6 +15,8 @@ ChromotingView::ChromotingView() frame_height_(0) { } +ChromotingView::~ChromotingView() {} + // TODO(garykac): This assumes a single screen. This will need to be adjusted // to add support for mulitple monitors. void ChromotingView::GetScreenSize(int* width, int* height) { diff --git a/remoting/client/chromoting_view.h b/remoting/client/chromoting_view.h index d1c978b..faf4f68 100644 --- a/remoting/client/chromoting_view.h +++ b/remoting/client/chromoting_view.h @@ -22,7 +22,7 @@ namespace remoting { class ChromotingView { public: ChromotingView(); - virtual ~ChromotingView() {} + virtual ~ChromotingView(); // Get screen dimensions. // TODO(garykac): This will need to be extended to support multi-monitors. |