diff options
author | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-16 04:42:11 +0000 |
---|---|---|
committer | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-16 04:42:11 +0000 |
commit | 029d0ad209ec52c1df81cb6b4f52a7680b12337a (patch) | |
tree | a464d4c536a30c9d794ede98e2d62eb93d0ac86b /ash/wm/frame_painter.cc | |
parent | b769f12cb6463fd22cb84bf06ff7e02cebf57ef1 (diff) | |
download | chromium_src-029d0ad209ec52c1df81cb6b4f52a7680b12337a.zip chromium_src-029d0ad209ec52c1df81cb6b4f52a7680b12337a.tar.gz chromium_src-029d0ad209ec52c1df81cb6b4f52a7680b12337a.tar.bz2 |
Change window header size for applications which are popups
BUG=145618
TEST=visual
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=156993
Review URL: https://chromiumcodereview.appspot.com/10905300
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157042 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/wm/frame_painter.cc')
-rw-r--r-- | ash/wm/frame_painter.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ash/wm/frame_painter.cc b/ash/wm/frame_painter.cc index fc01f34..3a33893 100644 --- a/ash/wm/frame_painter.cc +++ b/ash/wm/frame_painter.cc @@ -37,9 +37,9 @@ namespace { // the web content and may need to be built into the shadow layers instead. const int kBorderThickness = 0; // Space between left edge of window and popup window icon. -const int kIconOffsetX = 4; +const int kIconOffsetX = 9; // Space between top of window and popup window icon. -const int kIconOffsetY = 6; +const int kIconOffsetY = 9; // Height and width of window icon. const int kIconSize = 16; // Space between the title text and the caption buttons. @@ -49,7 +49,7 @@ const int kTitleIconOffsetX = 4; // Space between window edge and title text, when there is no icon. const int kTitleNoIconOffsetX = 8; // Space between title text and top of window. -const int kTitleOffsetY = 7; +const int kTitleOffsetY = 10; // Color for the title text. const SkColor kTitleTextColor = SkColorSetRGB(40, 40, 40); // Size of header/content separator line below the header image. |