commit | 9b6f42934e5a1e65ebfc668d91a28a6e2678a14c | [log] [tgz] |
---|---|---|
author | avi <[email protected]> | Sat Dec 26 22:15:14 2015 |
committer | Commit bot <[email protected]> | Sat Dec 26 22:16:15 2015 |
tree | 6fb35dc2e15b6aeb7ce5d8fb2daf08f58c6d77e7 | |
parent | 28523e2cf18ee02f503e1792788b88d828968055 [diff] [blame] |
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/command_line_unittest.cc b/base/command_line_unittest.cc index ac8a395..967ce1c5 100644 --- a/base/command_line_unittest.cc +++ b/base/command_line_unittest.cc
@@ -5,11 +5,12 @@ #include <string> #include <vector> -#include "base/basictypes.h" #include "base/command_line.h" #include "base/files/file_path.h" +#include "base/macros.h" #include "base/memory/scoped_ptr.h" #include "base/strings/utf_string_conversions.h" +#include "build/build_config.h" #include "testing/gtest/include/gtest/gtest.h" namespace base {