| Index: chrome/browser/ui/gtk/find_bar_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/find_bar_gtk.cc b/chrome/browser/ui/gtk/find_bar_gtk.cc
|
| index 527d8250f0c1d578cd75f8962c2edac1ae8a424a..1faed023240e66ad9ea440fa9aaab9dcf8534953 100644
|
| --- a/chrome/browser/ui/gtk/find_bar_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/find_bar_gtk.cc
|
| @@ -41,7 +41,6 @@
|
| #include "grit/theme_resources.h"
|
| #include "grit/theme_resources_standard.h"
|
| #include "ui/base/gtk/gtk_floating_container.h"
|
| -#include "ui/base/gtk/gtk_hig_constants.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
|
|
| @@ -49,11 +48,11 @@ namespace {
|
|
|
| // Used as the color of the text in the entry box and the text for the results
|
| // label for failure searches.
|
| -const GdkColor kEntryTextColor = ui::kGdkBlack;
|
| +const GdkColor kEntryTextColor = gtk_util::kGdkBlack;
|
|
|
| // Used as the color of the background of the entry box and the background of
|
| // the find label for successful searches.
|
| -const GdkColor kEntryBackgroundColor = ui::kGdkWhite;
|
| +const GdkColor kEntryBackgroundColor = gtk_util::kGdkWhite;
|
| const GdkColor kFindFailureBackgroundColor = GDK_COLOR_RGB(255, 102, 102);
|
| const GdkColor kFindSuccessTextColor = GDK_COLOR_RGB(178, 178, 178);
|
|
|
| @@ -502,7 +501,7 @@ void FindBarGtk::Observe(int type,
|
| gtk_misc_set_alignment(GTK_MISC(match_count_label_), 0.5, 0.5);
|
| } else {
|
| gtk_widget_modify_cursor(
|
| - text_entry_, &ui::kGdkBlack, &ui::kGdkGray);
|
| + text_entry_, >k_util::kGdkBlack, >k_util::kGdkGray);
|
| gtk_widget_modify_base(text_entry_, GTK_STATE_NORMAL,
|
| &kEntryBackgroundColor);
|
| gtk_widget_modify_text(text_entry_, GTK_STATE_NORMAL,
|
|
|