Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1499)

Unified Diff: content/browser/tracing/file_tracing_provider_impl.h

Issue 1549853002: Switch to standard integer types in base/files/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/files/scoped_temp_dir_unittest.cc ('k') | content/browser/tracing/file_tracing_provider_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « base/files/scoped_temp_dir_unittest.cc ('k') | content/browser/tracing/file_tracing_provider_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698