| Index: base/stringprintf.cc
|
| diff --git a/base/stringprintf.cc b/base/stringprintf.cc
|
| index 5607d39e4eb0d21e08a86e5c809a67fb28d21461..4f584aba9cdae724b6a70236b243634512623bb2 100644
|
| --- a/base/stringprintf.cc
|
| +++ b/base/stringprintf.cc
|
| @@ -2,12 +2,19 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "base/stringprintf.h"
|
|
|
| -#include <errno.h>
|
|
|
| -#include "base/string_util.h"
|
| -#include "base/utf_string_conversions.h"
|
| +
|
| +#include <stdarg.h>
|
| +#include <stddef.h>
|
| +#include <sys/errno.h>
|
| +#include <string>
|
| +#include <vector>
|
| +
|
| +#include "base/basictypes.h"
|
| +#include "base/logging.h"
|
| +#include "base/port.h"
|
| +#include "base/string_util_posix.h"
|
|
|
| namespace base {
|
|
|
|
|