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

Unified Diff: ui/views/style/platform_style.cc

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 side-by-side diff with in-line comments
Download patch
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());
}

Powered by Google App Engine
This is Rietveld 408576698