summaryrefslogtreecommitdiffstats
path: root/chromium/base/files/file.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2022-02-02 12:21:57 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2022-02-12 08:13:00 +0000
commit606d85f2a5386472314d39923da28c70c60dc8e7 (patch)
treea8f4d7bf997f349f45605e6058259fba0630e4d7 /chromium/base/files/file.h
parent5786336dda477d04fb98483dca1a5426eebde2d7 (diff)
BASELINE: Update Chromium to 96.0.4664.181
Change-Id: I762cd1da89d73aa6313b4a753fe126c34833f046 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/base/files/file.h')
-rw-r--r--chromium/base/files/file.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/chromium/base/files/file.h b/chromium/base/files/file.h
index a264d930ded..69c5d90b982 100644
--- a/chromium/base/files/file.h
+++ b/chromium/base/files/file.h
@@ -63,18 +63,18 @@ class BASE_EXPORT File {
FLAG_READ = 1 << 5,
FLAG_WRITE = 1 << 6,
FLAG_APPEND = 1 << 7,
- FLAG_EXCLUSIVE_READ = 1 << 8, // EXCLUSIVE is opposite of Windows SHARE.
- FLAG_EXCLUSIVE_WRITE = 1 << 9,
+ FLAG_EXCLUSIVE_READ = 1 << 8, // Windows only. Opposite of Windows SHARE.
+ FLAG_EXCLUSIVE_WRITE = 1 << 9, // Windows only. Opposite of Windows SHARE.
FLAG_ASYNC = 1 << 10,
- FLAG_TEMPORARY = 1 << 11, // Used on Windows only.
- FLAG_HIDDEN = 1 << 12, // Used on Windows only.
+ FLAG_TEMPORARY = 1 << 11, // Windows only.
+ FLAG_HIDDEN = 1 << 12, // Windows only.
FLAG_DELETE_ON_CLOSE = 1 << 13,
- FLAG_WRITE_ATTRIBUTES = 1 << 14, // Used on Windows only.
- FLAG_SHARE_DELETE = 1 << 15, // Used on Windows only.
+ FLAG_WRITE_ATTRIBUTES = 1 << 14, // Windows only.
+ FLAG_SHARE_DELETE = 1 << 15, // Windows only.
FLAG_TERMINAL_DEVICE = 1 << 16, // Serial port flags.
- FLAG_BACKUP_SEMANTICS = 1 << 17, // Used on Windows only.
- FLAG_EXECUTE = 1 << 18, // Used on Windows only.
- FLAG_SEQUENTIAL_SCAN = 1 << 19, // Used on Windows only.
+ FLAG_BACKUP_SEMANTICS = 1 << 17, // Windows only.
+ FLAG_EXECUTE = 1 << 18, // Windows only.
+ FLAG_SEQUENTIAL_SCAN = 1 << 19, // Windows only.
FLAG_CAN_DELETE_ON_CLOSE = 1 << 20, // Requests permission to delete a file
// via DeleteOnClose() (Windows only).
// See DeleteOnClose() for details.