Chromium Code Reviews| Index: ui/views/style/platform_style.cc |
| diff --git a/ui/views/style/platform_style.cc b/ui/views/style/platform_style.cc |
| index e5e43e00a99a3e04d141339cf0c63c35813edbae..6973f4314112bbbf2f250c65534d547888b80406 100644 |
| --- a/ui/views/style/platform_style.cc |
| +++ b/ui/views/style/platform_style.cc |
| @@ -15,6 +15,11 @@ namespace views { |
| #if !defined(OS_MACOSX) |
| // static |
| +scoped_ptr<Background> PlatformStyle::CreateComboboxBackground() { |
|
tapted
2016/03/22 23:04:33
nit: move below CreateCombboxBorder
Elly Fong-Jones
2016/03/23 18:07:44
Done.
|
| + return make_scoped_ptr(nullptr); |
|
sky
2016/03/22 23:54:30
nit: return nullptr;
Elly Fong-Jones
2016/03/23 18:07:44
Done.
|
| +} |
| + |
| +// static |
| scoped_ptr<FocusableBorder> PlatformStyle::CreateComboboxBorder() { |
| return make_scoped_ptr(new FocusableBorder()); |
| } |