Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(801)

Side by Side Diff: base/event_synthesis_gtk.cc

Issue 3337006: Revert 58388 - Revert 58215 - Revert 58186 - Move the keyboard files from bas... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/event_synthesis_gtk.h ('k') | base/keyboard_code_conversion.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "base/event_synthesis_gtk.h" 5 #include "base/event_synthesis_gtk.h"
6 6
7 #include "base/keyboard_code_conversion_gtk.h" 7 #include "base/keyboard_code_conversion_gtk.h"
8 8
9 namespace base { 9 namespace base {
10 10
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 base 90 } // namespace base
OLDNEW
« no previous file with comments | « base/event_synthesis_gtk.h ('k') | base/keyboard_code_conversion.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698