| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/browser/ui/libgtk2ui/gtk2_key_bindings_handler.h" | 5 #include "chrome/browser/ui/libgtk2ui/gtk2_key_bindings_handler.h" |
| 6 | 6 |
| 7 #include <gdk/gdkkeysyms.h> | 7 #include <gdk/gdkkeysyms.h> |
| 8 #include <X11/Xlib.h> | 8 #include <X11/Xlib.h> |
| 9 #include <X11/XKBlib.h> | 9 #include <X11/XKBlib.h> |
| 10 | 10 |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 // Just for disabling the default handler. | 380 // Just for disabling the default handler. |
| 381 return FALSE; | 381 return FALSE; |
| 382 } | 382 } |
| 383 | 383 |
| 384 void Gtk2KeyBindingsHandler::MoveFocus(GtkWidget* widget, | 384 void Gtk2KeyBindingsHandler::MoveFocus(GtkWidget* widget, |
| 385 GtkDirectionType arg1) { | 385 GtkDirectionType arg1) { |
| 386 // Just for disabling the default handler. | 386 // Just for disabling the default handler. |
| 387 } | 387 } |
| 388 | 388 |
| 389 } // namespace libgtk2ui | 389 } // namespace libgtk2ui |
| OLD | NEW |