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

Unified Diff: pdf/chunk_stream.cc

Issue 1533413002: Switch to standard integer types in pdf/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 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 | « no previous file | pdf/document_loader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pdf/chunk_stream.cc
diff --git a/pdf/chunk_stream.cc b/pdf/chunk_stream.cc
index e5801513aa0fc7c48c96414a3b7668d074973109..bdb5399eff2422949ca0061bbe51e8e935ada841 100644
--- a/pdf/chunk_stream.cc
+++ b/pdf/chunk_stream.cc
@@ -4,6 +4,9 @@
#include "pdf/chunk_stream.h"
+#include <stddef.h>
+#include <string.h>
+
#define __STDC_LIMIT_MACROS
#ifdef _WIN32
#include <limits.h>
@@ -13,8 +16,6 @@
#include <algorithm>
-#include "base/basictypes.h"
-
namespace chrome_pdf {
ChunkStream::ChunkStream() : stream_size_(0) {
« no previous file with comments | « no previous file | pdf/document_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698