summaryrefslogtreecommitdiff
path: root/chromium/components/services/filesystem/file_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/services/filesystem/file_impl.h')
-rw-r--r--chromium/components/services/filesystem/file_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/components/services/filesystem/file_impl.h b/chromium/components/services/filesystem/file_impl.h
index 4a3d4a0f70e..8ae90799d29 100644
--- a/chromium/components/services/filesystem/file_impl.h
+++ b/chromium/components/services/filesystem/file_impl.h
@@ -41,12 +41,12 @@ class FileImpl : public mojom::File {
// Returns whether the underlying file handle is valid.
bool IsValid() const;
-#if !defined(OS_FUCHSIA)
+#if !BUILDFLAG(IS_FUCHSIA)
// Attempts to perform the native operating system's locking operations on
// the internal mojom::File handle. Not supported on Fuchsia.
base::File::Error RawLockFile();
base::File::Error RawUnlockFile();
-#endif // !OS_FUCHSIA
+#endif // !BUILDFLAG(IS_FUCHSIA)
const base::FilePath& path() const { return path_; }