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

Unified Diff: webkit/blob/blob_data.cc

Issue 7974011: Break large blobs into multiple ipcs during creation. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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
Index: webkit/blob/blob_data.cc
===================================================================
--- webkit/blob/blob_data.cc (revision 103169)
+++ webkit/blob/blob_data.cc (working copy)
@@ -18,9 +18,9 @@
namespace webkit_blob {
BlobData::Item::Item()
- : type_(TYPE_DATA),
- offset_(0),
- length_(0) {
+ : type(TYPE_DATA),
+ offset(0),
+ length(0) {
}
BlobData::Item::~Item() {}

Powered by Google App Engine
This is Rietveld 408576698