| Index: content/browser/tracing/file_tracing_provider_impl.h
|
| diff --git a/content/browser/tracing/file_tracing_provider_impl.h b/content/browser/tracing/file_tracing_provider_impl.h
|
| index 1dc01a4fd7e98d17cb78788b9120b9dd362e3454..8926635adaedb71443b69fe02f6f24bb912fbc12 100644
|
| --- a/content/browser/tracing/file_tracing_provider_impl.h
|
| +++ b/content/browser/tracing/file_tracing_provider_impl.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef CONTENT_BROWSER_TRACING_FILE_TRACING_PROVIDER_IMPL_H_
|
| #define CONTENT_BROWSER_TRACING_FILE_TRACING_PROVIDER_IMPL_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/files/file_tracing.h"
|
| #include "base/macros.h"
|
|
|
| @@ -22,7 +24,7 @@ class FileTracingProviderImpl : public base::FileTracing::Provider {
|
| void FileTracingEnable(void* id) override;
|
| void FileTracingDisable(void* id) override;
|
| void FileTracingEventBegin(const char* name, void* id,
|
| - const base::FilePath& path, int64 size) override;
|
| + const base::FilePath& path, int64_t size) override;
|
| void FileTracingEventEnd(const char* name, void* id) override;
|
|
|
| private:
|
|
|