Skip to content

Commit

Permalink
Increase app_shell default window size
Browse files Browse the repository at this point in the history
Use 1366x768 because that matches most Chromebooks.

BUG=none
TEST=none

Review URL: https://codereview.chromium.org/334333003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277673 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
jamescook@chromium.org committed Jun 17, 2014
1 parent 464e76a commit c1132cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/shell/browser/shell_desktop_controller.cc
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ void ShellDesktopController::CreateRootWindow() {
// Set up basic pieces of ui::wm.
gfx::Size size = GetPrimaryDisplaySize();
if (size.IsEmpty())
size = gfx::Size(800, 600);
size = gfx::Size(1366, 768);

host_.reset(aura::WindowTreeHost::Create(gfx::Rect(size)));
host_->InitHost();
Expand Down

0 comments on commit c1132cc

Please sign in to comment.