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

Unified Diff: webkit/glue/plugins/pepper_transport.cc

Issue 3433005: Linux: More gcc 4.5 NULL versus 0 fixes. (Closed)
Patch Set: Created 10 years, 3 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
« no previous file with comments | « webkit/glue/plugins/pepper_private.cc ('k') | webkit/glue/webvideoframe_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/pepper_transport.cc
diff --git a/webkit/glue/plugins/pepper_transport.cc b/webkit/glue/plugins/pepper_transport.cc
index 0b650d2fe55800ba95e8c114e81e3d91478c073d..ed5e05f937b65a0bb6fb24e00dd713af20a1e7c0 100644
--- a/webkit/glue/plugins/pepper_transport.cc
+++ b/webkit/glue/plugins/pepper_transport.cc
@@ -20,7 +20,7 @@ PP_Resource CreateTransport(PP_Module module,
const char* name,
const char* proto) {
// TODO(juberti): implement me
- PP_Resource p(NULL);
+ PP_Resource p(0);
return p;
}
@@ -68,7 +68,7 @@ int32_t GetNextAddress(PP_Resource transport,
// from the remote peer.
int32_t ReceiveRemoteAddress(PP_Resource transport,
PP_Var address) {
- // TODO(juberti): impelement me
+ // TODO(juberti): implement me
return 0;
}
« no previous file with comments | « webkit/glue/plugins/pepper_private.cc ('k') | webkit/glue/webvideoframe_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698