AccessibilityManager must be deleted after ash Shell, but before InputMethodManager.
[chromium-blink-merge.git] / chrome / browser / ui / libgtk2ui / gtk2_event_loop.h
blob0bd2a219ae2724166dba8f738a844818a7e05374
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_LIBGTK2UI_GTK2_EVENT_LOOP_H_
6 #define CHROME_BROWSER_UI_LIBGTK2UI_GTK2_EVENT_LOOP_H_
8 #include "base/macros.h"
9 #include "ui/base/glib/glib_integers.h"
11 typedef union _GdkEvent GdkEvent;
12 typedef struct _GdkEventKey GdkEventKey;
14 template<typename Type> struct DefaultSingletonTraits;
16 namespace libgtk2ui {
18 class Gtk2EventLoop {
19 public:
20 static Gtk2EventLoop* GetInstance();
22 private:
23 friend struct DefaultSingletonTraits<Gtk2EventLoop>;
25 Gtk2EventLoop();
26 ~Gtk2EventLoop();
28 static void DispatchGdkEvent(GdkEvent* gdk_event, gpointer);
29 static void ProcessGdkEventKey(const GdkEventKey& gdk_event_key);
31 DISALLOW_COPY_AND_ASSIGN(Gtk2EventLoop);
34 } // namespace libgtk2ui
36 #endif // CHROME_BROWSER_UI_LIBGTK2UI_GTK2_EVENT_LOOP_H_