| 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;
|
|
|