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

Unified Diff: remoting/protocol/host_stub.h

Issue 12220092: Rename ClientDimensions to ClientResolution and add pixel-size and DPI fields. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typos in ChromotingInstance. Created 7 years, 10 months 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/protocol/host_stub.h
diff --git a/remoting/protocol/host_stub.h b/remoting/protocol/host_stub.h
index a1d2152dcec334b6cb1f14ed18092508a01fab1c..b66558fc2a622432b977efbb82440eed9b0098d7 100644
--- a/remoting/protocol/host_stub.h
+++ b/remoting/protocol/host_stub.h
@@ -14,7 +14,7 @@
namespace remoting {
namespace protocol {
-class ClientDimensions;
+class ClientResolution;
class VideoControl;
class AudioControl;
@@ -22,9 +22,9 @@ class HostStub {
public:
HostStub() {}
- // Notification of the available client display dimensions.
+ // Notification of the client dimensions and pixel density.
// This may be used to resize the host display to match the client area.
- virtual void NotifyClientDimensions(const ClientDimensions& dimensions) = 0;
+ virtual void NotifyClientResolution(const ClientResolution& resolution) = 0;
// Configures video update properties. Currently only pausing & resuming the
// video channel is supported.

Powered by Google App Engine
This is Rietveld 408576698