Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(511)

Unified Diff: remoting/client/chromoting_view.cc

Issue 8985007: Refactoring of the client-side input pipeline and scaling dimension management. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/client/chromoting_view.cc
diff --git a/remoting/client/chromoting_view.cc b/remoting/client/chromoting_view.cc
deleted file mode 100644
index 23138d0efba946db55dbf1f999c158b6890ea11f..0000000000000000000000000000000000000000
--- a/remoting/client/chromoting_view.cc
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "remoting/client/chromoting_view.h"
-
-#include "base/message_loop.h"
-#include "base/synchronization/waitable_event.h"
-
-namespace remoting {
-
-ChromotingView::ChromotingView()
- : frame_width_(0),
- 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) {
- *width = frame_width_;
- *height = frame_height_;
-}
-
-} // namespace remoting

Powered by Google App Engine
This is Rietveld 408576698