Index: base/pickle.cc |
diff --git a/base/pickle.cc b/base/pickle.cc |
index e7d5768803d8eb02a9d2fbab86031978497e7aaf..1a824aa50031929372aef07f95fa0d083d927305 100644 |
--- a/base/pickle.cc |
+++ b/base/pickle.cc |
@@ -2,12 +2,18 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "base/pickle.h" |
- |
+#include <limits.h> |
+#include <stddef.h> |
#include <stdlib.h> |
- |
+#include <string.h> |
#include <algorithm> // for max() |
#include <limits> |
+#include <string> |
+ |
+#include "base/basictypes.h" |
+#include "base/logging.h" |
+#include "base/pickle.h" |
+#include "base/string16.h" |
//------------------------------------------------------------------------------ |