OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "app/event_synthesis_gtk.h" | 5 #include "app/event_synthesis_gtk.h" |
6 | 6 |
7 #include "app/keyboard_code_conversion_gtk.h" | 7 #include "app/keyboard_code_conversion_gtk.h" |
8 | 8 |
9 namespace app { | 9 namespace app { |
10 | 10 |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 (control ? GDK_CONTROL_MASK : 0) | GDK_SHIFT_MASK)); | 81 (control ? GDK_CONTROL_MASK : 0) | GDK_SHIFT_MASK)); |
82 } | 82 } |
83 | 83 |
84 if (control) { | 84 if (control) { |
85 events->push_back( | 85 events->push_back( |
86 SynthesizeKeyEvent(window, false, GDK_Control_L, GDK_CONTROL_MASK)); | 86 SynthesizeKeyEvent(window, false, GDK_Control_L, GDK_CONTROL_MASK)); |
87 } | 87 } |
88 } | 88 } |
89 | 89 |
90 } // namespace app | 90 } // namespace app |
OLD | NEW |