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

Unified Diff: components/filesystem/file_impl.h

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « components/filesystem/directory_impl_unittest.cc ('k') | components/filesystem/file_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/filesystem/file_impl.h
diff --git a/components/filesystem/file_impl.h b/components/filesystem/file_impl.h
index 0ca3501e6b2b30c4daf3bfaacc3fadc2be0680dd..b7e5185919a9fdc43a42cd4888aae80f10da8079 100644
--- a/components/filesystem/file_impl.h
+++ b/components/filesystem/file_impl.h
@@ -5,6 +5,8 @@
#ifndef COMPONENTS_FILESYSTEM_FILE_IMPL_H_
#define COMPONENTS_FILESYSTEM_FILE_IMPL_H_
+#include <stdint.h>
+
#include "base/files/file.h"
#include "base/files/scoped_file.h"
#include "base/macros.h"
@@ -22,7 +24,7 @@ class FileImpl : public File {
public:
FileImpl(mojo::InterfaceRequest<File> request,
const base::FilePath& path,
- uint32 flags);
+ uint32_t flags);
FileImpl(mojo::InterfaceRequest<File> request, base::File file);
~FileImpl() override;
« no previous file with comments | « components/filesystem/directory_impl_unittest.cc ('k') | components/filesystem/file_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698