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

Unified Diff: ppapi/tests/test_websocket.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
« no previous file with comments | « ppapi/tests/test_var.cc ('k') | webkit/glue/webkit_glue.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/test_websocket.cc
diff --git a/ppapi/tests/test_websocket.cc b/ppapi/tests/test_websocket.cc
index bf5c0ee15975609b8efe17376ad5c7167c3117ce..29aca17730f6f41d5cdd2c6070f80d53f8e51912 100644
--- a/ppapi/tests/test_websocket.cc
+++ b/ppapi/tests/test_websocket.cc
@@ -63,8 +63,7 @@ void TestWebSocket::RunTests(const std::string& filter) {
}
PP_Var TestWebSocket::CreateVar(const char* string) {
- return var_interface_->VarFromUtf8(
- pp::Module::Get()->pp_module(), string, strlen(string));
+ return var_interface_->VarFromUtf8(string, strlen(string));
}
void TestWebSocket::ReleaseVar(const PP_Var& var) {
« no previous file with comments | « ppapi/tests/test_var.cc ('k') | webkit/glue/webkit_glue.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698