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

Unified Diff: services/ui/ws/platform_display_delegate.h

Issue 2356913002: Pass device scale factor from display to ws. (Closed)
Patch Set: Address more comments. Created 4 years, 3 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
« no previous file with comments | « services/ui/ws/platform_display.cc ('k') | services/ui/ws/platform_display_init_params.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/ws/platform_display_delegate.h
diff --git a/services/ui/ws/platform_display_delegate.h b/services/ui/ws/platform_display_delegate.h
index 7daf17da384388c6c2d3dfd05f2b95349ece3cfb..40b49c85709c66c552923210916ce11e99478cb2 100644
--- a/services/ui/ws/platform_display_delegate.h
+++ b/services/ui/ws/platform_display_delegate.h
@@ -7,6 +7,10 @@
#include "services/ui/ws/ids.h"
+namespace gfx {
+class Size;
+}
+
namespace ui {
rjkroege 2016/09/23 13:56:23 nit: why two namespace ui?
kylechar 2016/09/23 14:22:28 Probably something like "s/namespace mus/namespace
class Event;
}
@@ -23,6 +27,10 @@ struct ViewportMetrics;
/// and responses to changes in viewport size.
class PlatformDisplayDelegate {
public:
+ // Creates the root window for this display. The new root window will have
+ // |size| in DIP initially.
+ virtual void CreateRootWindow(const gfx::Size& size) = 0;
+
// Returns the root window of this display.
virtual ServerWindow* GetRootWindow() = 0;
« no previous file with comments | « services/ui/ws/platform_display.cc ('k') | services/ui/ws/platform_display_init_params.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698