| 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/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 "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "ui/base/material_design/material_design_controller.h" | 9 #include "ui/base/material_design/material_design_controller.h" |
| 10 | 10 |
| 11 int GetLayoutConstant(LayoutConstant constant) { | 11 int GetLayoutConstant(LayoutConstant constant) { |
| 12 const int kFindBarVerticalOffset[] = {1, 6, 6}; | 12 const int kFindBarVerticalOffset[] = {1, 6, 6}; |
| 13 const int kIconLabelViewInternalPadding[] = {3, 2, 2}; | 13 const int kIconLabelViewInternalSpacing[] = {3, 2, 2}; |
| 14 const int kIconLabelViewTrailingPadding[] = {2, 3, 3}; | 14 const int kIconLabelViewTrailingPadding[] = {2, 3, 3}; |
| 15 const int kLocationBarBorderThickness[] = {2, 1, 1}; | 15 const int kLocationBarBorderThickness[] = {2, 1, 1}; |
| 16 const int kLocationBarBubbleFontVerticalPadding[] = {1, 2, 4}; | 16 const int kLocationBarBubbleFontVerticalPadding[] = {1, 2, 4}; |
| 17 const int kLocationBarBubbleHorizontalPadding[] = {1, 4, 4}; | 17 const int kLocationBarBubbleHorizontalPadding[] = {1, 4, 4}; |
| 18 const int kLocationBarBubbleVerticalPadding[] = {1, 3, 3}; | 18 const int kLocationBarBubbleVerticalPadding[] = {1, 3, 3}; |
| 19 const int kLocationBarHeight[] = {27, 28, 32}; | 19 const int kLocationBarHeight[] = {27, 28, 32}; |
| 20 const int kLocationBarHorizontalPadding[] = {3, 6, 6}; | 20 const int kLocationBarHorizontalPadding[] = {3, 6, 6}; |
| 21 const int kLocationBarVerticalPadding[] = {0, 1, 1}; | 21 const int kLocationBarVerticalPadding[] = {0, 1, 1}; |
| 22 const int kOmniboxDropdownBorderInterior[] = {6, 0, 0}; | 22 const int kOmniboxDropdownBorderInterior[] = {6, 0, 0}; |
| 23 const int kOmniboxFontPixelSize[] = {16, 14, 14}; | 23 const int kOmniboxFontPixelSize[] = {16, 14, 14}; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 39 const int kTabstripToolbarOverlap[] = {3, 0, 0}; | 39 const int kTabstripToolbarOverlap[] = {3, 0, 0}; |
| 40 const int kToolbarContentShadowHeight[] = {0, 0, 0}; | 40 const int kToolbarContentShadowHeight[] = {0, 0, 0}; |
| 41 const int kToolbarContentShadowHeightAsh[] = {2, 0, 0}; | 41 const int kToolbarContentShadowHeightAsh[] = {2, 0, 0}; |
| 42 const int kToolbarElementPadding[] = {0, 0, 8}; | 42 const int kToolbarElementPadding[] = {0, 0, 8}; |
| 43 const int kToolbarLocationBarRightPadding[] = {0, 4, 8}; | 43 const int kToolbarLocationBarRightPadding[] = {0, 4, 8}; |
| 44 | 44 |
| 45 const int mode = ui::MaterialDesignController::GetMode(); | 45 const int mode = ui::MaterialDesignController::GetMode(); |
| 46 switch (constant) { | 46 switch (constant) { |
| 47 case FIND_BAR_TOOLBAR_OVERLAP: | 47 case FIND_BAR_TOOLBAR_OVERLAP: |
| 48 return kFindBarVerticalOffset[mode]; | 48 return kFindBarVerticalOffset[mode]; |
| 49 case ICON_LABEL_VIEW_INTERNAL_PADDING: | 49 case ICON_LABEL_VIEW_INTERNAL_SPACING: |
| 50 return kIconLabelViewInternalPadding[mode]; | 50 return kIconLabelViewInternalSpacing[mode]; |
| 51 case ICON_LABEL_VIEW_TRAILING_PADDING: | 51 case ICON_LABEL_VIEW_TRAILING_PADDING: |
| 52 return kIconLabelViewTrailingPadding[mode]; | 52 return kIconLabelViewTrailingPadding[mode]; |
| 53 case LOCATION_BAR_BORDER_THICKNESS: | 53 case LOCATION_BAR_BORDER_THICKNESS: |
| 54 return kLocationBarBorderThickness[mode]; | 54 return kLocationBarBorderThickness[mode]; |
| 55 case LOCATION_BAR_BUBBLE_FONT_VERTICAL_PADDING: | 55 case LOCATION_BAR_BUBBLE_FONT_VERTICAL_PADDING: |
| 56 return kLocationBarBubbleFontVerticalPadding[mode]; | 56 return kLocationBarBubbleFontVerticalPadding[mode]; |
| 57 case LOCATION_BAR_BUBBLE_HORIZONTAL_PADDING: | 57 case LOCATION_BAR_BUBBLE_HORIZONTAL_PADDING: |
| 58 return kLocationBarBubbleHorizontalPadding[mode]; | 58 return kLocationBarBubbleHorizontalPadding[mode]; |
| 59 case LOCATION_BAR_BUBBLE_VERTICAL_PADDING: | 59 case LOCATION_BAR_BUBBLE_VERTICAL_PADDING: |
| 60 return kLocationBarBubbleVerticalPadding[mode]; | 60 return kLocationBarBubbleVerticalPadding[mode]; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 const int kNewTabButtonHeight[] = {18, 18, 21}; | 146 const int kNewTabButtonHeight[] = {18, 18, 21}; |
| 147 | 147 |
| 148 const int mode = ui::MaterialDesignController::GetMode(); | 148 const int mode = ui::MaterialDesignController::GetMode(); |
| 149 switch (size) { | 149 switch (size) { |
| 150 case NEW_TAB_BUTTON: | 150 case NEW_TAB_BUTTON: |
| 151 return gfx::Size(kNewTabButtonWidth[mode], kNewTabButtonHeight[mode]); | 151 return gfx::Size(kNewTabButtonWidth[mode], kNewTabButtonHeight[mode]); |
| 152 } | 152 } |
| 153 NOTREACHED(); | 153 NOTREACHED(); |
| 154 return gfx::Size(); | 154 return gfx::Size(); |
| 155 } | 155 } |
| OLD | NEW |