| Index: chrome/browser/net/net_log_logger.h
|
| diff --git a/chrome/browser/net/net_log_logger.h b/chrome/browser/net/net_log_logger.h
|
| index e8505b157e8eb10329c27c4145bc41c4125a23bf..33e821746f47ab4edb477894634ac5e60857210d 100644
|
| --- a/chrome/browser/net/net_log_logger.h
|
| +++ b/chrome/browser/net/net_log_logger.h
|
| @@ -8,7 +8,9 @@
|
| #include "base/memory/scoped_handle.h"
|
| #include "net/base/net_log.h"
|
|
|
| +namespace base {
|
| class FilePath;
|
| +}
|
|
|
| // NetLogLogger watches the NetLog event stream, and sends all entries to
|
| // VLOG(1) or a path specified on creation. This is to debug errors that
|
| @@ -25,7 +27,7 @@ class NetLogLogger : public net::NetLog::ThreadSafeObserver {
|
| // If |log_path| is empty or file creation fails, writes to VLOG(1).
|
| // Otherwise, writes to |log_path|. Uses one line per entry, for
|
| // easy parsing.
|
| - explicit NetLogLogger(const FilePath &log_path);
|
| + explicit NetLogLogger(const base::FilePath &log_path);
|
| virtual ~NetLogLogger();
|
|
|
| // Starts observing specified NetLog. Must not already be watching a NetLog.
|
|
|