[Webkit-unassigned] [Bug 36938] Add basic FileSystem operations for FileReader/FileWriter support
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Apr 1 01:00:53 PDT 2010
https://bugs.webkit.org/show_bug.cgi?id=36938
--- Comment #2 from TAMURA, Kent <tkent at chromium.org> 2010-04-01 01:00:54 PST ---
(From update of attachment 52269)
> diff --git a/WebCore/platform/FileSystem.h b/WebCore/platform/FileSystem.h
> index 80023d4..3b61eb9 100644
> --- a/WebCore/platform/FileSystem.h
> +++ b/WebCore/platform/FileSystem.h
> +enum FileOpenMode {
> + OPEN_FOR_READ = 0,
> + OPEN_FOR_WRITE
> +};
> +
> +enum FileSeekOrigin {
> + SEEK_FROM_BEGINNING = 0,
> + SEEK_FROM_CURRENT,
> + SEEK_FROM_END
> +};
> +
http://webkit.org/coding/coding-style.html
10. Enum members should user InterCaps with an initial capital letter.
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list