diff options
-rw-r--r-- | chrome/app/theme/o2_globe_selected_dark.png | bin | 0 -> 3293 bytes | |||
-rw-r--r-- | chrome/app/theme/o2_history_selected_dark.png | bin | 0 -> 3118 bytes | |||
-rw-r--r-- | chrome/app/theme/o2_more_selected_dark.png | bin | 0 -> 2992 bytes | |||
-rw-r--r-- | chrome/app/theme/o2_search_selected_dark.png | bin | 0 -> 3029 bytes | |||
-rw-r--r-- | chrome/app/theme/o2_star_selected_dark.png | bin | 0 -> 3229 bytes | |||
-rw-r--r-- | chrome/app/theme/theme_resources.grd | 5 | ||||
-rw-r--r-- | chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc | 12 |
7 files changed, 12 insertions, 5 deletions
diff --git a/chrome/app/theme/o2_globe_selected_dark.png b/chrome/app/theme/o2_globe_selected_dark.png Binary files differnew file mode 100644 index 0000000..cf28c10 --- /dev/null +++ b/chrome/app/theme/o2_globe_selected_dark.png diff --git a/chrome/app/theme/o2_history_selected_dark.png b/chrome/app/theme/o2_history_selected_dark.png Binary files differnew file mode 100644 index 0000000..54c2073 --- /dev/null +++ b/chrome/app/theme/o2_history_selected_dark.png diff --git a/chrome/app/theme/o2_more_selected_dark.png b/chrome/app/theme/o2_more_selected_dark.png Binary files differnew file mode 100644 index 0000000..30989eb --- /dev/null +++ b/chrome/app/theme/o2_more_selected_dark.png diff --git a/chrome/app/theme/o2_search_selected_dark.png b/chrome/app/theme/o2_search_selected_dark.png Binary files differnew file mode 100644 index 0000000..51bdca5 --- /dev/null +++ b/chrome/app/theme/o2_search_selected_dark.png diff --git a/chrome/app/theme/o2_star_selected_dark.png b/chrome/app/theme/o2_star_selected_dark.png Binary files differnew file mode 100644 index 0000000..c68cf4d1 --- /dev/null +++ b/chrome/app/theme/o2_star_selected_dark.png diff --git a/chrome/app/theme/theme_resources.grd b/chrome/app/theme/theme_resources.grd index 6888bad..0b07be3 100644 --- a/chrome/app/theme/theme_resources.grd +++ b/chrome/app/theme/theme_resources.grd @@ -329,6 +329,11 @@ <include name="IDR_O2_MORE_SELECTED" file="o2_more_selected.png" type="BINDATA" /> <include name="IDR_O2_SEARCH_SELECTED" file="o2_search_selected.png" type="BINDATA" /> <include name="IDR_O2_STAR_SELECTED" file="o2_star_selected.png" type="BINDATA" /> + <include name="IDR_O2_GLOBE_SELECTED_DARK" file="o2_globe_selected_dark.png" type="BINDATA" /> + <include name="IDR_O2_HISTORY_SELECTED_DARK" file="o2_history_selected_dark.png" type="BINDATA" /> + <include name="IDR_O2_MORE_SELECTED_DARK" file="o2_more_selected_dark.png" type="BINDATA" /> + <include name="IDR_O2_SEARCH_SELECTED_DARK" file="o2_search_selected_dark.png" type="BINDATA" /> + <include name="IDR_O2_STAR_SELECTED_DARK" file="o2_star_selected_dark.png" type="BINDATA" /> <include name="IDR_CLOSED_WINDOW" file="closed_window.png" type="BINDATA" /> <if expr="pp_ifdef('_google_chrome')"> diff --git a/chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc b/chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc index 1b7a500..1a997f2 100644 --- a/chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc +++ b/chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc @@ -177,15 +177,17 @@ GdkPixbuf* IconForMatch(const AutocompleteMatch& match, bool selected) { // TODO(deanm): These would be better as pixmaps someday. ResourceBundle& rb = ResourceBundle::GetSharedInstance(); static GdkPixbuf* o2_globe = rb.GetPixbufNamed(IDR_O2_GLOBE); - static GdkPixbuf* o2_globe_s = rb.GetPixbufNamed(IDR_O2_GLOBE_SELECTED); + static GdkPixbuf* o2_globe_s = rb.GetPixbufNamed(IDR_O2_GLOBE_SELECTED_DARK); static GdkPixbuf* o2_history = rb.GetPixbufNamed(IDR_O2_HISTORY); - static GdkPixbuf* o2_history_s = rb.GetPixbufNamed(IDR_O2_HISTORY_SELECTED); + static GdkPixbuf* o2_history_s = + rb.GetPixbufNamed(IDR_O2_HISTORY_SELECTED_DARK); static GdkPixbuf* o2_more = rb.GetPixbufNamed(IDR_O2_MORE); - static GdkPixbuf* o2_more_s = rb.GetPixbufNamed(IDR_O2_MORE_SELECTED); + static GdkPixbuf* o2_more_s = rb.GetPixbufNamed(IDR_O2_MORE_SELECTED_DARK); static GdkPixbuf* o2_search = rb.GetPixbufNamed(IDR_O2_SEARCH); - static GdkPixbuf* o2_search_s = rb.GetPixbufNamed(IDR_O2_SEARCH_SELECTED); + static GdkPixbuf* o2_search_s = + rb.GetPixbufNamed(IDR_O2_SEARCH_SELECTED_DARK); static GdkPixbuf* o2_star = rb.GetPixbufNamed(IDR_O2_STAR); - static GdkPixbuf* o2_star_s = rb.GetPixbufNamed(IDR_O2_STAR_SELECTED); + static GdkPixbuf* o2_star_s = rb.GetPixbufNamed(IDR_O2_STAR_SELECTED_DARK); if (match.starred) return selected ? o2_star_s : o2_star; |