| Index: content/browser/tracing/trace_subscriber_stdio.cc
|
| diff --git a/content/browser/tracing/trace_subscriber_stdio.cc b/content/browser/tracing/trace_subscriber_stdio.cc
|
| index d366f1b07951ec3b5c1e3046b0abd7413e7b1661..ea3a7246e4fd637e02eecb5866dc8ec808e68e69 100644
|
| --- a/content/browser/tracing/trace_subscriber_stdio.cc
|
| +++ b/content/browser/tracing/trace_subscriber_stdio.cc
|
| @@ -16,7 +16,7 @@ namespace content {
|
| class TraceSubscriberStdioImpl
|
| : public base::RefCountedThreadSafe<TraceSubscriberStdioImpl> {
|
| public:
|
| - explicit TraceSubscriberStdioImpl(const FilePath& path)
|
| + explicit TraceSubscriberStdioImpl(const base::FilePath& path)
|
| : path_(path),
|
| file_(0) {}
|
|
|
| @@ -73,12 +73,12 @@ class TraceSubscriberStdioImpl
|
| }
|
| }
|
|
|
| - FilePath path_;
|
| + base::FilePath path_;
|
| FILE* file_;
|
| base::debug::TraceResultBuffer trace_buffer_;
|
| };
|
|
|
| -TraceSubscriberStdio::TraceSubscriberStdio(const FilePath& path)
|
| +TraceSubscriberStdio::TraceSubscriberStdio(const base::FilePath& path)
|
| : impl_(new TraceSubscriberStdioImpl(path)) {
|
| BrowserThread::PostBlockingPoolSequencedTask(
|
| __FILE__, FROM_HERE,
|
|
|