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

Unified Diff: blimp/engine/ui/blimp_screen.cc

Issue 1403083002: [Blimp] Adds Blimp EngineSession and ClientSession skeleton (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 | « blimp/engine/ui/blimp_screen.h ('k') | blimp/net/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/engine/ui/blimp_screen.cc
diff --git a/blimp/engine/ui/blimp_screen.cc b/blimp/engine/ui/blimp_screen.cc
index 2eba20f37b035f8fa9b71a6f0ac17ab12c5209eb..02829679a4474c54ea925f856996024ed7c814cd 100644
--- a/blimp/engine/ui/blimp_screen.cc
+++ b/blimp/engine/ui/blimp_screen.cc
@@ -10,13 +10,14 @@ namespace engine {
namespace {
const int64 kDisplayId = 1;
-const int kDefaultDisplayWidth = 1;
-const int kDefaultDisplayHeight = 1;
const float kDefaultScale = 1.0f;
const int kNumDisplays = 1;
} // namespace
+const int BlimpScreen::kDefaultDisplayWidth = 800;
+const int BlimpScreen::kDefaultDisplayHeight = 600;
+
BlimpScreen::BlimpScreen() : display_(kDisplayId) {
display_.SetScaleAndBounds(
kDefaultScale, gfx::Rect(kDefaultDisplayWidth, kDefaultDisplayHeight));
« no previous file with comments | « blimp/engine/ui/blimp_screen.h ('k') | blimp/net/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698