| Index: chrome/browser/ui/gtk/constrained_html_delegate_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/constrained_html_delegate_gtk.cc b/chrome/browser/ui/gtk/constrained_html_delegate_gtk.cc
|
| index 1bd3468213edb9a8d0fbec530c3072bf5b44a7da..386f92d73c5f9e39885c97579b7786974f2c309f 100644
|
| --- a/chrome/browser/ui/gtk/constrained_html_delegate_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/constrained_html_delegate_gtk.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/ui/gtk/constrained_window_gtk.h"
|
| -#include "chrome/browser/ui/gtk/gtk_util.h"
|
| #include "chrome/browser/ui/gtk/tab_contents_container_gtk.h"
|
| #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
|
| #include "chrome/browser/ui/webui/html_dialog_tab_contents_delegate.h"
|
| @@ -14,6 +13,7 @@
|
| #include "content/browser/renderer_host/render_view_host.h"
|
| #include "content/browser/tab_contents/tab_contents.h"
|
| #include "content/common/notification_source.h"
|
| +#include "ui/base/gtk/gtk_hig_constants.h"
|
| #include "ui/gfx/rect.h"
|
|
|
| class ConstrainedHtmlDelegateGtk : public ConstrainedWindowGtkDelegate,
|
| @@ -42,7 +42,7 @@ class ConstrainedHtmlDelegateGtk : public ConstrainedWindowGtkDelegate,
|
| virtual HtmlDialogUIDelegate* GetHtmlDialogUIDelegate();
|
| virtual void OnDialogClose();
|
| virtual bool GetBackgroundColor(GdkColor* color) {
|
| - *color = gtk_util::kGdkWhite;
|
| + *color = ui::kGdkWhite;
|
| return true;
|
| }
|
|
|
|
|