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

Unified Diff: remoting/host/resizing_host_observer.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/host/resizing_host_observer.h
diff --git a/remoting/host/resizing_host_observer.h b/remoting/host/resizing_host_observer.h
index 41b18feb2196bc13826eac28d987b64666da9161..f6badb6174c875a6172b1ed32b07e5408e0915b7 100644
--- a/remoting/host/resizing_host_observer.h
+++ b/remoting/host/resizing_host_observer.h
@@ -29,8 +29,9 @@ class ResizingHostObserver : public HostStatusObserver {
// HostStatusObserver interface
virtual void OnClientAuthenticated(const std::string& jid) OVERRIDE;
virtual void OnClientDisconnected(const std::string& jid) OVERRIDE;
- virtual void OnClientDimensionsChanged(const std::string& jid,
- const SkISize& size) OVERRIDE;
+ virtual void OnClientResolutionChanged(const std::string& jid,
+ const SkISize& size,
+ const SkIPoint& dpi) OVERRIDE;
private:
DesktopResizer* const desktop_resizer_;

Powered by Google App Engine
This is Rietveld 408576698