summaryrefslogtreecommitdiffstats
path: root/ash
diff options
context:
space:
mode:
authorjamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-26 23:28:00 +0000
committerjamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-26 23:28:00 +0000
commit86b04537cf9ff0d5f0fb372651c6dfc79bc0c8cc (patch)
treeee014c89129467b0f46552cb592b8f6e05161abe /ash
parent9350602e9e60cd555e4fd983a01fdd97c5fc2742 (diff)
downloadchromium_src-86b04537cf9ff0d5f0fb372651c6dfc79bc0c8cc.zip
chromium_src-86b04537cf9ff0d5f0fb372651c6dfc79bc0c8cc.tar.gz
chromium_src-86b04537cf9ff0d5f0fb372651c6dfc79bc0c8cc.tar.bz2
Set default linux_chromeos host window to 1366x768
This is the size of the screen for most Chromebook users, so it's been for developers to use this size by default. BUG=178128 TEST=manual, linux_chromeos launches with the proper window size Review URL: https://chromiumcodereview.appspot.com/12335077 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184770 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash')
-rw-r--r--ash/display/display_manager.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ash/display/display_manager.cc b/ash/display/display_manager.cc
index 97d9d71..170b340 100644
--- a/ash/display/display_manager.cc
+++ b/ash/display/display_manager.cc
@@ -55,8 +55,8 @@ namespace {
// Default bounds for a display.
const int kDefaultHostWindowX = 200;
const int kDefaultHostWindowY = 200;
-const int kDefaultHostWindowWidth = 1280;
-const int kDefaultHostWindowHeight = 1024;
+const int kDefaultHostWindowWidth = 1366;
+const int kDefaultHostWindowHeight = 768;
struct DisplaySortFunctor {
bool operator()(const gfx::Display& a, const gfx::Display& b) {