OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/infobars/infobar_service.h" |
| 6 |
| 7 #include "components/infobars/core/infobar.h" |
| 8 #include "ui/views/window/non_client_view.h" |
| 9 |
| 10 const infobars::InfoBarConstants kChromeInfoBarConstants = { |
| 11 views::NonClientFrameView::kClientEdgeThickness, // separator_line_height |
| 12 36, // default_bar_target_height |
| 13 9, // default_arrow_target_height |
| 14 24, // maximum_arrow_target_height |
| 15 9, // default_arrow_target_half_width |
| 16 14, // maximum_arrow_target_half_width |
| 17 }; |
OLD | NEW |