Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(351)

Side by Side Diff: ui/views/style/platform_style_mac.mm

Issue 1819443002: MacViews: draw combobox arrow backgrounds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use Background instead of a separate Part Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
17 scoped_ptr<Background> PlatformStyle::CreateComboboxBackground() {
tapted 2016/03/22 23:04:33 nit: move below CreateComboboxBorder
Elly Fong-Jones 2016/03/23 18:07:45 Done.
18 return make_scoped_ptr(new ComboboxBackgroundMac);
19 }
20
21 // static
16 scoped_ptr<FocusableBorder> PlatformStyle::CreateComboboxBorder() { 22 scoped_ptr<FocusableBorder> PlatformStyle::CreateComboboxBorder() {
17 return make_scoped_ptr(new FocusableRoundedBorder); 23 return make_scoped_ptr(new FocusableRoundedBorder);
18 } 24 }
19 25
20 // static 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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698