| Index: chrome/browser/ui/views/infobars/infobar_view.cc
|
| diff --git a/chrome/browser/ui/views/infobars/infobar_view.cc b/chrome/browser/ui/views/infobars/infobar_view.cc
|
| index fa721dd9935a221d2561478bdd7b0d18fd28d69f..bb88b349582f03c452eb0d9e57b1479cb590de81 100644
|
| --- a/chrome/browser/ui/views/infobars/infobar_view.cc
|
| +++ b/chrome/browser/ui/views/infobars/infobar_view.cc
|
| @@ -11,6 +11,7 @@
|
| #include "chrome/browser/ui/views/infobars/infobar_button_border.h"
|
| #include "grit/generated_resources.h"
|
| #include "grit/theme_resources.h"
|
| +#include "grit/theme_resources_standard.h"
|
| #include "third_party/skia/include/effects/SkGradientShader.h"
|
| #include "ui/base/accessibility/accessible_view_state.h"
|
| #include "ui/base/animation/slide_animation.h"
|
| @@ -44,7 +45,12 @@ const int InfoBar::kDefaultArrowTargetHeight = 9;
|
| const int InfoBar::kMaximumArrowTargetHeight = 24;
|
| const int InfoBar::kDefaultArrowTargetHalfWidth = kDefaultArrowTargetHeight;
|
| const int InfoBar::kMaximumArrowTargetHalfWidth = 14;
|
| +
|
| +#ifdef TOUCH_UI
|
| +const int InfoBar::kDefaultBarTargetHeight = 75;
|
| +#else
|
| const int InfoBar::kDefaultBarTargetHeight = 36;
|
| +#endif
|
|
|
| const int InfoBarView::kButtonButtonSpacing = 10;
|
| const int InfoBarView::kEndOfLabelSpacing = 16;
|
|
|