| Index: chrome/browser/ui/gtk/bubble/bubble_gtk.h
|
| diff --git a/chrome/browser/ui/gtk/bubble/bubble_gtk.h b/chrome/browser/ui/gtk/bubble/bubble_gtk.h
|
| index ba64ec8e7ebe35a2d279ccfef32592d5b8f00e1a..e1657cf577b18d0c8539cd0852fb967c245f24e2 100644
|
| --- a/chrome/browser/ui/gtk/bubble/bubble_gtk.h
|
| +++ b/chrome/browser/ui/gtk/bubble/bubble_gtk.h
|
| @@ -21,7 +21,7 @@
|
| #include "ui/gfx/rect.h"
|
|
|
| class BubbleGtk;
|
| -class GtkThemeService;
|
| +class ThemeServiceGtk;
|
|
|
| namespace gfx {
|
| class Rect;
|
| @@ -73,7 +73,7 @@ class BubbleGtk : public content::NotificationObserver {
|
| ArrowLocationGtk arrow_location,
|
| bool match_system_theme,
|
| bool grab_input,
|
| - GtkThemeService* provider,
|
| + ThemeServiceGtk* provider,
|
| BubbleDelegateGtk* delegate);
|
|
|
| // Close the bubble if it's open. This will delete the widgets and object,
|
| @@ -110,7 +110,7 @@ class BubbleGtk : public content::NotificationObserver {
|
| FRAME_STROKE,
|
| };
|
|
|
| - BubbleGtk(GtkThemeService* provider, bool match_system_theme);
|
| + BubbleGtk(ThemeServiceGtk* provider, bool match_system_theme);
|
| virtual ~BubbleGtk();
|
|
|
| // Creates the Bubble.
|
| @@ -184,7 +184,7 @@ class BubbleGtk : public content::NotificationObserver {
|
| GtkWidget* window_;
|
|
|
| // Provides colors and stuff.
|
| - GtkThemeService* theme_service_;
|
| + ThemeServiceGtk* theme_service_;
|
|
|
| // The accel group attached to |window_|, to handle closing with escape.
|
| GtkAccelGroup* accel_group_;
|
|
|