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

Unified Diff: base/platform_file.h

Issue 15861011: Add an "append flag" to base::PlatformFile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unnecessary braces Created 7 years, 7 months 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 | « no previous file | base/platform_file_posix.cc » ('j') | base/platform_file_posix.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/platform_file.h
diff --git a/base/platform_file.h b/base/platform_file.h
index 6a6b9434fe58980624f1f2b39f7b1f9a896503e5..0010d4b6b2b618b6dbf3b940636d83b3db9ed380 100644
--- a/base/platform_file.h
+++ b/base/platform_file.h
@@ -49,6 +49,8 @@ enum PlatformFileFlags {
PLATFORM_FILE_BACKUP_SEMANTICS = 1 << 17, // Used on Windows only
PLATFORM_FILE_EXECUTE = 1 << 18, // Used on Windows only
+
+ PLATFORM_FILE_APPEND = 1 << 19,
};
// PLATFORM_FILE_ERROR_ACCESS_DENIED is returned when a call fails because of
« no previous file with comments | « no previous file | base/platform_file_posix.cc » ('j') | base/platform_file_posix.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698