Changeset 153039 in webkit
- Timestamp:
- Jul 23, 2013, 4:17:48 AM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r153035 r153039 1 2013-07-23 Zan Dobersek <zdobersek@igalia.com> 2 3 Fix the style of the ContentDispositionType enum definition 4 https://bugs.webkit.org/show_bug.cgi?id=118990 5 6 Reviewed by Darin Adler. 7 8 * platform/network/HTTPParsers.h: Align the style of the ContentDispositionType enumeration 9 definition with the other enumeration definitions in the HTTPParsers header, using the 10 'enum Name { ... }' style instead of a typedef. 11 1 12 2013-07-23 Zan Dobersek <zdobersek@igalia.com> 2 13 -
trunk/Source/WebCore/platform/network/HTTPParsers.h
r147086 r153039 41 41 class ResourceResponseBase; 42 42 43 typedef enum{43 enum ContentDispositionType { 44 44 ContentDispositionNone, 45 45 ContentDispositionInline, 46 46 ContentDispositionAttachment, 47 47 ContentDispositionOther 48 } ContentDispositionType;48 }; 49 49 50 50 #if ENABLE(NOSNIFF)
Note:
See TracChangeset
for help on using the changeset viewer.