| 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 "ui/views/style/platform_style.h" | 5 #include "ui/views/style/platform_style.h" |
| 6 | 6 |
| 7 #include "ui/views/controls/button/label_button.h" | 7 #include "ui/views/controls/button/label_button.h" |
| 8 #include "ui/views/controls/button/label_button_border.h" | 8 #include "ui/views/controls/button/label_button_border.h" |
| 9 #include "ui/views/controls/focusable_rounded_border_mac.h" | 9 #include "ui/views/controls/focusable_rounded_border_mac.h" |
| 10 #import "ui/views/controls/scrollbar/cocoa_scroll_bar.h" | 10 #import "ui/views/controls/scrollbar/cocoa_scroll_bar.h" |
| 11 #include "ui/views/style/mac/combobox_background_mac.h" |
| 11 #include "ui/views/style/mac/dialog_button_border_mac.h" | 12 #include "ui/views/style/mac/dialog_button_border_mac.h" |
| 12 | 13 |
| 13 namespace views { | 14 namespace views { |
| 14 | 15 |
| 15 // static | 16 // static |
| 16 scoped_ptr<FocusableBorder> PlatformStyle::CreateComboboxBorder() { | 17 scoped_ptr<FocusableBorder> PlatformStyle::CreateComboboxBorder() { |
| 17 return make_scoped_ptr(new FocusableRoundedBorder); | 18 return make_scoped_ptr(new FocusableRoundedBorder); |
| 18 } | 19 } |
| 19 | 20 |
| 20 // static | 21 // static |
| 22 scoped_ptr<Background> PlatformStyle::CreateComboboxBackground() { |
| 23 return make_scoped_ptr(new ComboboxBackgroundMac); |
| 24 } |
| 25 |
| 26 // static |
| 21 scoped_ptr<LabelButtonBorder> PlatformStyle::CreateLabelButtonBorder( | 27 scoped_ptr<LabelButtonBorder> PlatformStyle::CreateLabelButtonBorder( |
| 22 Button::ButtonStyle style) { | 28 Button::ButtonStyle style) { |
| 23 if (style == Button::STYLE_BUTTON) | 29 if (style == Button::STYLE_BUTTON) |
| 24 return make_scoped_ptr(new DialogButtonBorderMac()); | 30 return make_scoped_ptr(new DialogButtonBorderMac()); |
| 25 | 31 |
| 26 return make_scoped_ptr(new LabelButtonAssetBorder(style)); | 32 return make_scoped_ptr(new LabelButtonAssetBorder(style)); |
| 27 } | 33 } |
| 28 | 34 |
| 29 // static | 35 // static |
| 30 scoped_ptr<ScrollBar> PlatformStyle::CreateScrollBar(bool is_horizontal) { | 36 scoped_ptr<ScrollBar> PlatformStyle::CreateScrollBar(bool is_horizontal) { |
| 31 return make_scoped_ptr(new CocoaScrollBar(is_horizontal)); | 37 return make_scoped_ptr(new CocoaScrollBar(is_horizontal)); |
| 32 } | 38 } |
| 33 | 39 |
| 34 } // namespace views | 40 } // namespace views |
| OLD | NEW |