diff options
Diffstat (limited to 'chrome/browser/ui/libgtk2ui/gtk2_event_loop.h')
-rw-r--r-- | chrome/browser/ui/libgtk2ui/gtk2_event_loop.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/ui/libgtk2ui/gtk2_event_loop.h b/chrome/browser/ui/libgtk2ui/gtk2_event_loop.h index 0bd2a21..5ba99d5 100644 --- a/chrome/browser/ui/libgtk2ui/gtk2_event_loop.h +++ b/chrome/browser/ui/libgtk2ui/gtk2_event_loop.h @@ -11,7 +11,9 @@ typedef union _GdkEvent GdkEvent; typedef struct _GdkEventKey GdkEventKey; +namespace base { template<typename Type> struct DefaultSingletonTraits; +} namespace libgtk2ui { @@ -20,7 +22,7 @@ class Gtk2EventLoop { static Gtk2EventLoop* GetInstance(); private: - friend struct DefaultSingletonTraits<Gtk2EventLoop>; + friend struct base::DefaultSingletonTraits<Gtk2EventLoop>; Gtk2EventLoop(); ~Gtk2EventLoop(); |