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

Unified Diff: webkit/plugins/ppapi/mock_plugin_delegate.cc

Issue 10391101: Test for Pepper IME events. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 7 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: webkit/plugins/ppapi/mock_plugin_delegate.cc
diff --git a/webkit/plugins/ppapi/mock_plugin_delegate.cc b/webkit/plugins/ppapi/mock_plugin_delegate.cc
index 971754c6985ce48227f51bdf19eeb4339e31a846..7c7329f75e0155ed49670719fb7a1c447b942a04 100644
--- a/webkit/plugins/ppapi/mock_plugin_delegate.cc
+++ b/webkit/plugins/ppapi/mock_plugin_delegate.cc
@@ -37,6 +37,16 @@ void MockPluginDelegate::PluginRequestedCancelComposition(
void MockPluginDelegate::PluginSelectionChanged(PluginInstance* instance) {
}
+void MockPluginDelegate::SimulateImeSetComposition(
+ const string16& text,
+ const std::vector<WebKit::WebCompositionUnderline>& underlines,
+ int selection_start,
+ int selection_end) {
+}
+
+void MockPluginDelegate::SimulateImeConfirmComposition(const string16& text) {
+}
+
void MockPluginDelegate::PluginCrashed(PluginInstance* instance) {
}

Powered by Google App Engine
This is Rietveld 408576698