Index: third_party/WebKit/Source/core/events/InputEvent.h |
diff --git a/third_party/WebKit/Source/core/events/InputEvent.h b/third_party/WebKit/Source/core/events/InputEvent.h |
index 35ee6dc19e47dbd96d4388160132d6b94ca42a45..5dc345d341a7a359601d1293b8c44161d695b6b2 100644 |
--- a/third_party/WebKit/Source/core/events/InputEvent.h |
+++ b/third_party/WebKit/Source/core/events/InputEvent.h |
@@ -33,6 +33,7 @@ public: |
DeleteComposedCharacter, |
Undo, |
Redo, |
+ Bold, |
// Add new input types immediately above this line. |
NumberOfInputTypes, |
@@ -49,6 +50,7 @@ public: |
}; |
static InputEvent* createBeforeInput(InputType, const String& data, EventCancelable, EventIsComposing, const RangeVector*); |
+ static InputEvent* createInput(InputType, const String& data, EventIsComposing, const RangeVector*); |
String inputType() const; |
const String& data() const { return m_data; } |