summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorjamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-19 19:49:35 +0000
committerjamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-19 19:49:35 +0000
commit24be3b0e3223c95c21e9eec731a97bc6bade57fc (patch)
tree77524cb0dcacaff4a23a968963df6bda469315f3 /apps
parent183a0c31d583c983776716cb91b434c25588cc08 (diff)
downloadchromium_src-24be3b0e3223c95c21e9eec731a97bc6bade57fc.zip
chromium_src-24be3b0e3223c95c21e9eec731a97bc6bade57fc.tar.gz
chromium_src-24be3b0e3223c95c21e9eec731a97bc6bade57fc.tar.bz2
Switch app_shell default window size to 1280x720
This works better with our demo app and uses the aspect ratio of some HD monitors we're hoping to use. BUG=none TBR=oshima@chromium.org Review URL: https://codereview.chromium.org/339963003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278459 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'apps')
-rw-r--r--apps/shell/browser/shell_desktop_controller.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/shell/browser/shell_desktop_controller.cc b/apps/shell/browser/shell_desktop_controller.cc
index 2db85b7..ec8450e 100644
--- a/apps/shell/browser/shell_desktop_controller.cc
+++ b/apps/shell/browser/shell_desktop_controller.cc
@@ -232,7 +232,7 @@ void ShellDesktopController::CreateRootWindow() {
// Set up basic pieces of ui::wm.
gfx::Size size = GetPrimaryDisplaySize();
if (size.IsEmpty())
- size = gfx::Size(1366, 768);
+ size = gfx::Size(1280, 720);
host_.reset(aura::WindowTreeHost::Create(gfx::Rect(size)));
host_->InitHost();