| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_LIBGTK2UI_X11_INPUT_METHOD_CONTEXT_IMPL_GTK2_H_ | 5 #ifndef CHROME_BROWSER_UI_LIBGTK2UI_X11_INPUT_METHOD_CONTEXT_IMPL_GTK2_H_ |
| 6 #define CHROME_BROWSER_UI_LIBGTK2UI_X11_INPUT_METHOD_CONTEXT_IMPL_GTK2_H_ | 6 #define CHROME_BROWSER_UI_LIBGTK2UI_X11_INPUT_METHOD_CONTEXT_IMPL_GTK2_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/containers/hash_tables.h" | 10 #include "base/containers/hash_tables.h" |
| 11 #include "base/event_types.h" | 11 #include "base/event_types.h" |
| 12 #include "base/gtest_prod_util.h" | |
| 13 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
| 14 #include "ui/base/glib/glib_integers.h" | 13 #include "ui/base/glib/glib_integers.h" |
| 15 #include "ui/base/glib/glib_signal.h" | 14 #include "ui/base/glib/glib_signal.h" |
| 16 #include "ui/base/ime/linux/linux_input_method_context.h" | 15 #include "ui/base/ime/linux/linux_input_method_context.h" |
| 17 #include "ui/gfx/geometry/rect.h" | 16 #include "ui/gfx/geometry/rect.h" |
| 18 | 17 |
| 19 typedef union _GdkEvent GdkEvent; | 18 typedef union _GdkEvent GdkEvent; |
| 20 typedef struct _GtkIMContext GtkIMContext; | 19 typedef struct _GtkIMContext GtkIMContext; |
| 21 | 20 |
| 22 namespace libgtk2ui { | 21 namespace libgtk2ui { |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 std::vector<int> meta_keycodes_; | 84 std::vector<int> meta_keycodes_; |
| 86 std::vector<int> super_keycodes_; | 85 std::vector<int> super_keycodes_; |
| 87 std::vector<int> hyper_keycodes_; | 86 std::vector<int> hyper_keycodes_; |
| 88 | 87 |
| 89 DISALLOW_COPY_AND_ASSIGN(X11InputMethodContextImplGtk2); | 88 DISALLOW_COPY_AND_ASSIGN(X11InputMethodContextImplGtk2); |
| 90 }; | 89 }; |
| 91 | 90 |
| 92 } // namespace libgtk2ui | 91 } // namespace libgtk2ui |
| 93 | 92 |
| 94 #endif // CHROME_BROWSER_UI_LIBGTK2UI_X11_INPUT_METHOD_CONTEXT_IMPL_GTK2_H_ | 93 #endif // CHROME_BROWSER_UI_LIBGTK2UI_X11_INPUT_METHOD_CONTEXT_IMPL_GTK2_H_ |
| OLD | NEW |