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

Unified Diff: ppapi/proxy/ppp_messaging_proxy_unittest.cc

Issue 8826011: Remove PP_Module from parameters for PPB_Var.VarFromUtf8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix windows build and some nacl tests. 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/proxy/ppp_messaging_proxy_unittest.cc
diff --git a/ppapi/proxy/ppp_messaging_proxy_unittest.cc b/ppapi/proxy/ppp_messaging_proxy_unittest.cc
index 25c7e55940e9f6ad5810797932cdd7ddcc6421d1..ed12e5747bfde6aad3ad72ca28b3478fab5c9bd1 100644
--- a/ppapi/proxy/ppp_messaging_proxy_unittest.cc
+++ b/ppapi/proxy/ppp_messaging_proxy_unittest.cc
@@ -46,7 +46,7 @@ void AddRef(PP_Var /*var*/) {
}
void Release(PP_Var /*var*/) {
}
-PP_Var VarFromUtf8(PP_Module /*module*/, const char* /*data*/, uint32_t len) {
+PP_Var VarFromUtf8(const char* /*data*/, uint32_t len) {
return PP_MakeUndefined();
}
// No matter what id we're given, always provide kTestString and its length.

Powered by Google App Engine
This is Rietveld 408576698