| Index: chrome/browser/ui/gtk/about_chrome_dialog.cc
|
| diff --git a/chrome/browser/ui/gtk/about_chrome_dialog.cc b/chrome/browser/ui/gtk/about_chrome_dialog.cc
|
| index 164ea806d0dff217e7e13ba975cde1b3f517f42f..61f84069616f90e770a73cb08d7deb4101a5dd95 100644
|
| --- a/chrome/browser/ui/gtk/about_chrome_dialog.cc
|
| +++ b/chrome/browser/ui/gtk/about_chrome_dialog.cc
|
| @@ -16,6 +16,7 @@
|
| #include "chrome/browser/ui/gtk/cairo_cached_surface.h"
|
| #include "chrome/browser/ui/gtk/gtk_chrome_link_button.h"
|
| #include "chrome/browser/ui/gtk/gtk_theme_service.h"
|
| +#include "chrome/browser/ui/gtk/gtk_util.h"
|
| #include "chrome/common/chrome_constants.h"
|
| #include "chrome/common/chrome_version_info.h"
|
| #include "chrome/common/url_constants.h"
|
| @@ -23,7 +24,6 @@
|
| #include "grit/generated_resources.h"
|
| #include "grit/locale_settings.h"
|
| #include "grit/theme_resources.h"
|
| -#include "ui/base/gtk/gtk_hig_constants.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| #include "ui/gfx/image/image.h"
|
| @@ -134,7 +134,7 @@ void ShowAboutDialogForProfile(GtkWindow* parent, Profile* profile) {
|
|
|
| GtkWidget* text_vbox = gtk_vbox_new(FALSE, kExtraLineSpacing);
|
|
|
| - GdkColor black = ui::kGdkBlack;
|
| + GdkColor black = gtk_util::kGdkBlack;
|
| GtkWidget* product_label = MakeMarkupLabel(
|
| "<span font_desc=\"18\" style=\"normal\">%s</span>",
|
| l10n_util::GetStringUTF8(IDS_PRODUCT_NAME));
|
| @@ -267,8 +267,8 @@ void ShowAboutDialogForProfile(GtkWindow* parent, Profile* profile) {
|
|
|
| GtkWidget* alignment = gtk_alignment_new(0.0, 0.0, 1.0, 1.0);
|
| gtk_alignment_set_padding(GTK_ALIGNMENT(alignment),
|
| - ui::kContentAreaBorder, 0,
|
| - ui::kContentAreaBorder, ui::kContentAreaBorder);
|
| + gtk_util::kContentAreaBorder, 0,
|
| + gtk_util::kContentAreaBorder, gtk_util::kContentAreaBorder);
|
| gtk_container_add(GTK_CONTAINER(alignment), vbox);
|
| gtk_box_pack_start(GTK_BOX(content_area), alignment, FALSE, FALSE, 0);
|
|
|
|
|