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

Unified Diff: content/common/browser_plugin/browser_plugin_messages.h

Issue 2568093003: Support parsing BackgroundSpans and UnderlineSpans in Android IME's commitText() (Closed)
Patch Set: Fix some stuff breaking Linux builds Created 4 years 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: content/common/browser_plugin/browser_plugin_messages.h
diff --git a/content/common/browser_plugin/browser_plugin_messages.h b/content/common/browser_plugin/browser_plugin_messages.h
index 81a54d595ed4b05617ef480abb623d6d55c2810f..2465c7896ae2f33f90ab921aa19de74c80e18164 100644
--- a/content/common/browser_plugin/browser_plugin_messages.h
+++ b/content/common/browser_plugin/browser_plugin_messages.h
@@ -74,10 +74,12 @@ IPC_MESSAGE_CONTROL5(
// This message is sent from BrowserPlugin to BrowserPluginGuest to notify that
// deleting the current composition and inserting specified text is requested.
-IPC_MESSAGE_CONTROL3(BrowserPluginHostMsg_ImeCommitText,
- int /* browser_plugin_instance_id */,
- std::string /* text */,
- int /* relative_cursor_pos */)
+IPC_MESSAGE_CONTROL4(
+ BrowserPluginHostMsg_ImeCommitText,
+ int /* browser_plugin_instance_id */,
+ std::string /* text */,
+ std::vector<blink::WebCompositionUnderline> /* underlines */,
+ int /* relative_cursor_pos */)
// This message is sent from BrowserPlugin to BrowserPluginGuest to notify that
// inserting the current composition is requested.

Powered by Google App Engine
This is Rietveld 408576698