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

Side by Side Diff: chrome/browser/extensions/key_identifier_conversion_views.cc

Issue 10824295: Rid the world of the last of views::Event types: TouchEvent, GestureEvent, MouseWheelEvent, ScrollE… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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
OLDNEW
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/extensions/key_identifier_conversion_views.h" 5 #include "chrome/browser/extensions/key_identifier_conversion_views.h"
6 6
7 #include <string.h> 7 #include <string.h>
8 8
9 #include <utility> 9 #include <utility>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/hash_tables.h" 12 #include "base/hash_tables.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "content/public/browser/browser_thread.h" 14 #include "content/public/browser/browser_thread.h"
15 #include "ui/base/event.h" 15 #include "ui/base/event.h"
16 #include "ui/base/keycodes/keyboard_codes.h" 16 #include "ui/base/keycodes/keyboard_codes.h"
17 #include "ui/views/events/event.h"
18 17
19 using content::BrowserThread; 18 using content::BrowserThread;
20 19
21 namespace { 20 namespace {
22 21
23 static const int kNumIdentifierTypes = 3; 22 static const int kNumIdentifierTypes = 3;
24 23
25 typedef struct KeyIdentifier { 24 typedef struct KeyIdentifier {
26 // In order: key identifier, character and unicode codepoint. They are 25 // In order: key identifier, character and unicode codepoint. They are
27 // searched in that order as well. 26 // searched in that order as well.
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 for (int i = 0; i < kNumIdentifierTypes; ++i) { 331 for (int i = 0; i < kNumIdentifierTypes; ++i) {
333 const IdentifierMap& map = *identifierMaps[i]; 332 const IdentifierMap& map = *identifierMaps[i];
334 333
335 IdentifierMap::const_iterator iter = map.find(key_identifier); 334 IdentifierMap::const_iterator iter = map.find(key_identifier);
336 if (iter != map.end()) 335 if (iter != map.end())
337 return *iter->second; 336 return *iter->second;
338 } 337 }
339 338
340 return *kUnknownKeyEvent; 339 return *kUnknownKeyEvent;
341 } 340 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_input_api.cc ('k') | chrome/browser/ui/omnibox/omnibox_edit_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698