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

Unified 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: Added new embedder API and code review comments update 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 side-by-side diff with in-line comments
Download patch
Index: Source/web/WebInputEventConversion.h
diff --git a/Source/web/WebInputEventConversion.h b/Source/web/WebInputEventConversion.h
index 196b58e82c2d268ee5bcebad2bd5af14dbebc08e..3b5caf58fcd32e814cf3817c55f5db2a915a1de0 100644
--- a/Source/web/WebInputEventConversion.h
+++ b/Source/web/WebInputEventConversion.h
@@ -73,7 +73,7 @@ public:
class PlatformKeyboardEventBuilder : public PlatformKeyboardEvent {
public:
- PlatformKeyboardEventBuilder(const WebKeyboardEvent&);
+ PlatformKeyboardEventBuilder(Widget*, const WebKeyboardEvent&);
void setKeyType(Type);
bool isCharacterKey() const;
};
@@ -120,8 +120,8 @@ public:
// to Undefined.
class WebKeyboardEventBuilder : public WebKeyboardEvent {
public:
- WebKeyboardEventBuilder(const KeyboardEvent&);
- WebKeyboardEventBuilder(const PlatformKeyboardEvent&);
+ WebKeyboardEventBuilder(const Widget*, const KeyboardEvent&);
+ WebKeyboardEventBuilder(const Widget*, const PlatformKeyboardEvent&);
};
// Converts a TouchEvent to a corresponding WebTouchEvent.

Powered by Google App Engine
This is Rietveld 408576698