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

Side by Side Diff: Source/web/WebInputEventConversion.h

Issue 663523002: Adding support for DOM3 KeyboardEvents Code in KeyboardEvents (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated to use domCode instead of native domCode Created 5 years, 11 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 68
69 class PlatformGestureEventBuilder : public PlatformGestureEvent { 69 class PlatformGestureEventBuilder : public PlatformGestureEvent {
70 public: 70 public:
71 PlatformGestureEventBuilder(Widget*, const WebGestureEvent&); 71 PlatformGestureEventBuilder(Widget*, const WebGestureEvent&);
72 }; 72 };
73 73
74 class PlatformKeyboardEventBuilder : public PlatformKeyboardEvent { 74 class PlatformKeyboardEventBuilder : public PlatformKeyboardEvent {
75 public: 75 public:
76 PlatformKeyboardEventBuilder(const WebKeyboardEvent&); 76 PlatformKeyboardEventBuilder(const WebKeyboardEvent&);
77 void setKeyType(Type); 77 void setKeyType(Type);
78 void setKeyboardEventDOMCodeValue(const char*);
Wez 2015/01/08 01:14:48 Given that this is a member of PlatformKeyboardEve
Habib Virji 2015/01/12 15:34:17 We can set the value, but m_code is declared as pr
78 bool isCharacterKey() const; 79 bool isCharacterKey() const;
79 }; 80 };
80 81
81 // Converts a WebTouchPoint to a PlatformTouchPoint. 82 // Converts a WebTouchPoint to a PlatformTouchPoint.
82 class PlatformTouchPointBuilder : public PlatformTouchPoint { 83 class PlatformTouchPointBuilder : public PlatformTouchPoint {
83 public: 84 public:
84 PlatformTouchPointBuilder(Widget*, const WebTouchPoint&); 85 PlatformTouchPointBuilder(Widget*, const WebTouchPoint&);
85 }; 86 };
86 87
87 // Converts a WebTouchEvent to a PlatformTouchEvent. 88 // Converts a WebTouchEvent to a PlatformTouchEvent.
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 // Converts GestureEvent to a corresponding WebGestureEvent. 136 // Converts GestureEvent to a corresponding WebGestureEvent.
136 // NOTE: If event mapping fails, the type will be set to Undefined. 137 // NOTE: If event mapping fails, the type will be set to Undefined.
137 class WebGestureEventBuilder : public WebGestureEvent { 138 class WebGestureEventBuilder : public WebGestureEvent {
138 public: 139 public:
139 WebGestureEventBuilder(const Widget*, const RenderObject*, const GestureEven t&); 140 WebGestureEventBuilder(const Widget*, const RenderObject*, const GestureEven t&);
140 }; 141 };
141 142
142 } // namespace blink 143 } // namespace blink
143 144
144 #endif 145 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698