| Index: ui/native_theme/native_theme_base.cc
|
| diff --git a/ui/native_theme/native_theme_base.cc b/ui/native_theme/native_theme_base.cc
|
| index 017b07afe9675c99b1c2fc2e4b1362d12cd26732..d0f135ac75032e1af109f27e299b0aed2e579dc0 100644
|
| --- a/ui/native_theme/native_theme_base.cc
|
| +++ b/ui/native_theme/native_theme_base.cc
|
| @@ -97,10 +97,6 @@ namespace ui {
|
| gfx::Size NativeThemeBase::GetPartSize(Part part,
|
| State state,
|
| const ExtraParams& extra) const {
|
| - gfx::Size size = CommonThemeGetPartSize(part, state, extra);
|
| - if (!size.IsEmpty())
|
| - return size;
|
| -
|
| switch (part) {
|
| // Please keep these in the order of NativeTheme::Part.
|
| case kCheckbox:
|
| @@ -197,9 +193,6 @@ void NativeThemeBase::Paint(SkCanvas* canvas,
|
|
|
| switch (part) {
|
| // Please keep these in the order of NativeTheme::Part.
|
| - case kComboboxArrow:
|
| - CommonThemePaintComboboxArrow(canvas, rect);
|
| - break;
|
| case kCheckbox:
|
| PaintCheckbox(canvas, state, rect, extra.button);
|
| break;
|
|
|