| Index: chrome/test/logging/win/log_file_printer.h
|
| diff --git a/chrome/test/logging/win/log_file_printer.h b/chrome/test/logging/win/log_file_printer.h
|
| index 85a54e97340dff31e42c493a74fbde951e7229af..d9953f1dcaa92665d72bc5d1276254f959449512 100644
|
| --- a/chrome/test/logging/win/log_file_printer.h
|
| +++ b/chrome/test/logging/win/log_file_printer.h
|
| @@ -11,14 +11,16 @@
|
|
|
| #include <iosfwd>
|
|
|
| +namespace base {
|
| class FilePath;
|
| +}
|
|
|
| namespace logging_win {
|
|
|
| // Reads |log_file|, emitting messages to |out|. Although it is safe to call
|
| // this from multiple threads, only one file may be read at a time; other
|
| // threads trying to read other log files will be blocked waiting.
|
| -void PrintLogFile(const FilePath& log_file, std::ostream* out);
|
| +void PrintLogFile(const base::FilePath& log_file, std::ostream* out);
|
|
|
| } // namespace logging_win
|
|
|
|
|