| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/views/layout_constants.h" | 5 #include "chrome/browser/ui/layout_constants.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "ui/base/resource/material_design/material_design_controller.h" | 8 #include "ui/base/resource/material_design/material_design_controller.h" |
| 9 | 9 |
| 10 int GetLayoutConstant(LayoutConstant constant) { | 10 int GetLayoutConstant(LayoutConstant constant) { |
| 11 const int kFindBarVerticalOffset[] = {1, 6, 6}; | 11 const int kFindBarVerticalOffset[] = {1, 6, 6}; |
| 12 const int kIconLabelViewInternalPadding[] = {3, 2, 2}; | 12 const int kIconLabelViewInternalPadding[] = {3, 2, 2}; |
| 13 const int kIconLabelViewTrailingPadding[] = {2, 8, 8}; | 13 const int kIconLabelViewTrailingPadding[] = {2, 8, 8}; |
| 14 const int kLocationBarBorderThickness[] = {2, 1, 1}; | 14 const int kLocationBarBorderThickness[] = {2, 1, 1}; |
| 15 const int kLocationBarBubbleHorizontalPadding[] = {1, 4, 4}; | 15 const int kLocationBarBubbleHorizontalPadding[] = {1, 4, 4}; |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 kToolbarBottomPadding[mode], | 140 kToolbarBottomPadding[mode], |
| 141 kToolbarRightPadding[mode]); | 141 kToolbarRightPadding[mode]); |
| 142 case TOOLBAR_BUTTON: { | 142 case TOOLBAR_BUTTON: { |
| 143 const int inset = kToolbarButtonPadding[mode]; | 143 const int inset = kToolbarButtonPadding[mode]; |
| 144 return gfx::Insets(inset, inset, inset, inset); | 144 return gfx::Insets(inset, inset, inset, inset); |
| 145 } | 145 } |
| 146 } | 146 } |
| 147 NOTREACHED(); | 147 NOTREACHED(); |
| 148 return gfx::Insets(); | 148 return gfx::Insets(); |
| 149 } | 149 } |
| OLD | NEW |