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

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

Issue 2994004: Fix some uninitialize variables that caused the URLLoader test to... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 5 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 | « chrome/test/ui/ppapi_uitest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/pepper_url_loader.cc
===================================================================
--- webkit/glue/plugins/pepper_url_loader.cc (revision 52184)
+++ webkit/glue/plugins/pepper_url_loader.cc (working copy)
@@ -151,7 +151,9 @@
bytes_sent_(0),
total_bytes_to_be_sent_(0),
bytes_received_(0),
- total_bytes_to_be_received_(0) {
+ total_bytes_to_be_received_(0),
+ user_buffer_(NULL),
+ user_buffer_size_(0) {
}
URLLoader::~URLLoader() {
« no previous file with comments | « chrome/test/ui/ppapi_uitest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698