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

Unified Diff: components/url_formatter/url_fixer.cc

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « components/url_formatter/elide_url_unittest.cc ('k') | components/url_formatter/url_fixer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/url_formatter/url_fixer.cc
diff --git a/components/url_formatter/url_fixer.cc b/components/url_formatter/url_fixer.cc
index c49a902270143368308894d96dfc836d61b98de5..919a38de36af6aa37a6cba1a796aa1a7a6c2530e 100644
--- a/components/url_formatter/url_fixer.cc
+++ b/components/url_formatter/url_fixer.cc
@@ -4,16 +4,16 @@
#include "components/url_formatter/url_fixer.h"
+#include <stddef.h>
+
#include <algorithm>
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/logging.h"
-#if defined(OS_POSIX)
-#include "base/path_service.h"
-#endif
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
+#include "build/build_config.h"
#include "components/url_formatter/url_formatter.h"
#include "net/base/escape.h"
#include "net/base/filename_util.h"
@@ -22,6 +22,10 @@
#include "url/url_file.h"
#include "url/url_util.h"
+#if defined(OS_POSIX)
+#include "base/path_service.h"
+#endif
+
namespace url_formatter {
const char* home_directory_override = nullptr;
« no previous file with comments | « components/url_formatter/elide_url_unittest.cc ('k') | components/url_formatter/url_fixer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698