| Index: chrome/browser/ui/libgtkui/gconf_listener.h
|
| diff --git a/chrome/browser/ui/libgtkui/gconf_listener.h b/chrome/browser/ui/libgtkui/gconf_listener.h
|
| index b57ceced3c33d1fe50d50e8e7d15598fbd1514c3..25b60ecca8bc3cf09c8b143441bf17ac96c30cbf 100644
|
| --- a/chrome/browser/ui/libgtkui/gconf_listener.h
|
| +++ b/chrome/browser/ui/libgtkui/gconf_listener.h
|
| @@ -16,15 +16,15 @@
|
| #include "chrome/browser/ui/libgtkui/gtk_signal.h"
|
|
|
| namespace libgtkui {
|
| -class Gtk2UI;
|
| +class GtkUi;
|
|
|
| // On GNOME desktops, subscribes to the gconf key which controlls button order.
|
| // Everywhere else, SetTiltebarButtons() just calls back into BrowserTitlebar
|
| // with the default ordering.
|
| class GConfListener {
|
| public:
|
| - // Sends data to the Gtk2UI when available.
|
| - explicit GConfListener(Gtk2UI* delegate);
|
| + // Sends data to the GtkUi when available.
|
| + explicit GConfListener(GtkUi* delegate);
|
| ~GConfListener();
|
|
|
| private:
|
| @@ -44,7 +44,7 @@ class GConfListener {
|
| void ParseAndStoreButtonValue(GConfValue* gconf_value);
|
| void ParseAndStoreMiddleClickValue(GConfValue* gconf_value);
|
|
|
| - Gtk2UI* delegate_;
|
| + GtkUi* delegate_;
|
|
|
| // Pointer to our gconf context. NULL if we aren't on a desktop that uses
|
| // gconf.
|
|
|