diff options
author | avi <avi@chromium.org> | 2015-12-20 19:43:20 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-12-21 03:44:30 +0000 |
commit | 6e1a22dbf2f897399d459f0e1a813decf02ff002 (patch) | |
tree | 1514d498779a6799f72b1f0310c7c54ec533494b /chromeos/system | |
parent | 77bc325cc5c97ebff1d447ac972fd02e2aec4155 (diff) | |
download | chromium_src-6e1a22dbf2f897399d459f0e1a813decf02ff002.zip chromium_src-6e1a22dbf2f897399d459f0e1a813decf02ff002.tar.gz chromium_src-6e1a22dbf2f897399d459f0e1a813decf02ff002.tar.bz2 |
Switch to standard integer types in chromeos/.
BUG=138542
TBR=zelidrag@chromium.org
Review URL: https://codereview.chromium.org/1540803002
Cr-Commit-Position: refs/heads/master@{#366324}
Diffstat (limited to 'chromeos/system')
-rw-r--r-- | chromeos/system/fake_statistics_provider.h | 1 | ||||
-rw-r--r-- | chromeos/system/name_value_pairs_parser.cc | 2 | ||||
-rw-r--r-- | chromeos/system/name_value_pairs_parser.h | 2 | ||||
-rw-r--r-- | chromeos/system/name_value_pairs_parser_unittest.cc | 1 | ||||
-rw-r--r-- | chromeos/system/statistics_provider.cc | 1 | ||||
-rw-r--r-- | chromeos/system/version_loader.cc | 2 |
6 files changed, 7 insertions, 2 deletions
diff --git a/chromeos/system/fake_statistics_provider.h b/chromeos/system/fake_statistics_provider.h index 0c43e88..d7f1c35 100644 --- a/chromeos/system/fake_statistics_provider.h +++ b/chromeos/system/fake_statistics_provider.h @@ -8,6 +8,7 @@ #include <map> #include <string> +#include "base/macros.h" #include "chromeos/system/statistics_provider.h" namespace chromeos { diff --git a/chromeos/system/name_value_pairs_parser.cc b/chromeos/system/name_value_pairs_parser.cc index bd565f7..2bf34b6 100644 --- a/chromeos/system/name_value_pairs_parser.cc +++ b/chromeos/system/name_value_pairs_parser.cc @@ -4,6 +4,8 @@ #include "chromeos/system/name_value_pairs_parser.h" +#include <stddef.h> + #include "base/command_line.h" #include "base/files/file_path.h" #include "base/files/file_util.h" diff --git a/chromeos/system/name_value_pairs_parser.h b/chromeos/system/name_value_pairs_parser.h index 2cb704b..bb1758b 100644 --- a/chromeos/system/name_value_pairs_parser.h +++ b/chromeos/system/name_value_pairs_parser.h @@ -8,7 +8,7 @@ #include <map> #include <string> -#include "base/basictypes.h" +#include "base/macros.h" #include "chromeos/chromeos_export.h" namespace base { diff --git a/chromeos/system/name_value_pairs_parser_unittest.cc b/chromeos/system/name_value_pairs_parser_unittest.cc index e627521..675a978 100644 --- a/chromeos/system/name_value_pairs_parser_unittest.cc +++ b/chromeos/system/name_value_pairs_parser_unittest.cc @@ -4,7 +4,6 @@ #include "chromeos/system/name_value_pairs_parser.h" -#include "base/basictypes.h" #include "testing/gtest/include/gtest/gtest.h" namespace chromeos { diff --git a/chromeos/system/statistics_provider.cc b/chromeos/system/statistics_provider.cc index 019177e..afa67de 100644 --- a/chromeos/system/statistics_provider.cc +++ b/chromeos/system/statistics_provider.cc @@ -11,6 +11,7 @@ #include "base/json/json_file_value_serializer.h" #include "base/location.h" #include "base/logging.h" +#include "base/macros.h" #include "base/memory/singleton.h" #include "base/path_service.h" #include "base/strings/string_number_conversions.h" diff --git a/chromeos/system/version_loader.cc b/chromeos/system/version_loader.cc index ab9505b..f62ea06 100644 --- a/chromeos/system/version_loader.cc +++ b/chromeos/system/version_loader.cc @@ -4,6 +4,8 @@ #include "chromeos/system/version_loader.h" +#include <stddef.h> + #include <vector> #include "base/files/file_path.h" |