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

Unified Diff: third_party/WebKit/Source/platform/WebTextInputInfo.cpp

Issue 2422663002: Define WebTextInputMode as a enum in the public API. (Closed)
Patch Set: git cl format Created 4 years, 2 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: third_party/WebKit/Source/platform/WebTextInputInfo.cpp
diff --git a/third_party/WebKit/Source/platform/WebTextInputInfo.cpp b/third_party/WebKit/Source/platform/WebTextInputInfo.cpp
index 4886c748ea808fb6003731d22b1f98a65f36f45e..a4dbb14e50f185f50a993e3afde7be89cb98fae7 100644
--- a/third_party/WebKit/Source/platform/WebTextInputInfo.cpp
+++ b/third_party/WebKit/Source/platform/WebTextInputInfo.cpp
@@ -37,7 +37,7 @@ bool WebTextInputInfo::equals(const WebTextInputInfo& other) const {
selectionStart == other.selectionStart &&
selectionEnd == other.selectionEnd &&
compositionStart == other.compositionStart &&
- compositionEnd == other.compositionEnd;
+ compositionEnd == other.compositionEnd && inputMode == other.inputMode;
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698