Switch to standard integer types in base/.
BUG=138542
[email protected]
NOPRESUBMIT=true
Review URL: https://codereview.chromium.org/1538743002
Cr-Commit-Position: refs/heads/master@{#366910}
diff --git a/base/json/json_value_converter.h b/base/json/json_value_converter.h
index f94d46e3..a1e0d5bb 100644
--- a/base/json/json_value_converter.h
+++ b/base/json/json_value_converter.h
@@ -5,12 +5,14 @@
#ifndef BASE_JSON_JSON_VALUE_CONVERTER_H_
#define BASE_JSON_JSON_VALUE_CONVERTER_H_
+#include <stddef.h>
+
#include <string>
#include <vector>
#include "base/base_export.h"
-#include "base/basictypes.h"
#include "base/logging.h"
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/scoped_vector.h"
#include "base/stl_util.h"