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

Unified Diff: pdf/document_loader.h

Issue 1587083004: PDF: Use a vector instead of a list in DocumentLoader. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 | « no previous file | pdf/document_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pdf/document_loader.h
diff --git a/pdf/document_loader.h b/pdf/document_loader.h
index c9d355b99ad1c15555b3aa4c0cf613658bae46da..af39390e975f657821a45bf4321d112e62294d31 100644
--- a/pdf/document_loader.h
+++ b/pdf/document_loader.h
@@ -128,7 +128,7 @@ class DocumentLoader {
bool is_multipart_;
std::string multipart_boundary_;
uint32_t requests_count_;
- std::list<std::vector<unsigned char> > chunk_buffer_;
+ std::vector<std::vector<unsigned char> > chunk_buffer_;
};
} // namespace chrome_pdf
« no previous file with comments | « no previous file | pdf/document_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698