| Index: chrome/browser/ui/gtk/bubble/bubble_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/bubble/bubble_gtk.cc b/chrome/browser/ui/gtk/bubble/bubble_gtk.cc
|
| index be2acd4ee5e6cfb3f09e85cc401a60e0b550f2b4..fa3197f34025beb86fc96e0dfe1057ae717d00f6 100644
|
| --- a/chrome/browser/ui/gtk/bubble/bubble_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/bubble/bubble_gtk.cc
|
| @@ -8,8 +8,8 @@
|
|
|
| #include "base/logging.h"
|
| #include "chrome/browser/ui/gtk/bubble/bubble_accelerators_gtk.h"
|
| -#include "chrome/browser/ui/gtk/gtk_theme_service.h"
|
| #include "chrome/browser/ui/gtk/gtk_util.h"
|
| +#include "chrome/browser/ui/gtk/theme_service_gtk.h"
|
| #include "chrome/common/chrome_notification_types.h"
|
| #include "content/public/browser/notification_source.h"
|
| #include "ui/base/gtk/gtk_compat.h"
|
| @@ -79,7 +79,7 @@ BubbleGtk* BubbleGtk::Show(GtkWidget* anchor_widget,
|
| ArrowLocationGtk arrow_location,
|
| bool match_system_theme,
|
| bool grab_input,
|
| - GtkThemeService* provider,
|
| + ThemeServiceGtk* provider,
|
| BubbleDelegateGtk* delegate) {
|
| BubbleGtk* bubble = new BubbleGtk(provider, match_system_theme);
|
| bubble->Init(anchor_widget, rect, content, arrow_location, grab_input);
|
| @@ -87,7 +87,7 @@ BubbleGtk* BubbleGtk::Show(GtkWidget* anchor_widget,
|
| return bubble;
|
| }
|
|
|
| -BubbleGtk::BubbleGtk(GtkThemeService* provider,
|
| +BubbleGtk::BubbleGtk(ThemeServiceGtk* provider,
|
| bool match_system_theme)
|
| : delegate_(NULL),
|
| window_(NULL),
|
|
|