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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_selection.cc

Issue 8826011: Remove PP_Module from parameters for PPB_Var.VarFromUtf8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 9 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: ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_selection.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_selection.cc b/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_selection.cc
index 2122b9ed8ef0ba70f10a9e945e703f92c8d15e6b..04016fcf2ef2c7e95cd376539917989d137df9be 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_selection.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_selection.cc
@@ -41,8 +41,7 @@ struct PP_Var GetSelectedText(PP_Instance instance, PP_Bool html) {
PP_Var selected_text = PP_MakeUndefined();
if (srpc_result == NACL_SRPC_RESULT_OK) {
- (void) DeserializeTo(
- channel, text_bytes.get(), text_size, 1, &selected_text);
+ (void) DeserializeTo(text_bytes.get(), text_size, 1, &selected_text);
}
return selected_text;
}

Powered by Google App Engine
This is Rietveld 408576698