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

Unified Diff: components/html_viewer/ui_setup.h

Issue 1136743003: Plumbs through screen size and scale factor to html_viewer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | « components/html_viewer/setup.cc ('k') | components/html_viewer/ui_setup_android.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/html_viewer/ui_setup.h
diff --git a/components/html_viewer/ui_setup.h b/components/html_viewer/ui_setup.h
index 64c334f1caf24a1fdf63dcaacb4787705c2631e2..7ab091513328d4133e53249779e95a7459f027f6 100644
--- a/components/html_viewer/ui_setup.h
+++ b/components/html_viewer/ui_setup.h
@@ -7,12 +7,16 @@
#include "base/basictypes.h"
+namespace gfx {
+class Size;
+}
+
namespace html_viewer {
// UISetup is intended for platform specific UI setup.
class UISetup {
public:
- UISetup() {}
+ UISetup(const gfx::Size& screen_size_in_pixels, float device_pixel_ratio) {}
~UISetup() {}
private:
« no previous file with comments | « components/html_viewer/setup.cc ('k') | components/html_viewer/ui_setup_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698