Commit b21d5508 authored by koz@chromium.org's avatar koz@chromium.org

Add padding to the fullscreen exit bubble on linux.


Review URL: http://codereview.chromium.org/8549014

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111081 0039d316-1c4b-4281-b951-d872f2087c98
parent 1a95a175
......@@ -12,7 +12,13 @@
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/rect.h"
// NOTE(koz): Linux doesn't use the thick shadowed border, so we add padding
// here.
#ifdef LINUX
const int FullscreenExitBubble::kPaddingPx = 8;
#else
const int FullscreenExitBubble::kPaddingPx = 0;
#endif
const int FullscreenExitBubble::kInitialDelayMs = 3800;
const int FullscreenExitBubble::kIdleTimeMs = 2300;
const int FullscreenExitBubble::kPositionCheckHz = 10;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment