Changeset 153039 in webkit


Ignore:
Timestamp:
Jul 23, 2013, 4:17:48 AM (12 years ago)
Author:
zandobersek@gmail.com
Message:

Fix the style of the ContentDispositionType enum definition
https://bugs.webkit.org/show_bug.cgi?id=118990

Reviewed by Darin Adler.

  • platform/network/HTTPParsers.h: Align the style of the ContentDispositionType enumeration

definition with the other enumeration definitions in the HTTPParsers header, using the
'enum Name { ... }' style instead of a typedef.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r153035 r153039  
     12013-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
    1122013-07-23  Zan Dobersek  <zdobersek@igalia.com>
    213
  • trunk/Source/WebCore/platform/network/HTTPParsers.h

    r147086 r153039  
    4141class ResourceResponseBase;
    4242
    43 typedef enum {
     43enum ContentDispositionType {
    4444    ContentDispositionNone,
    4545    ContentDispositionInline,
    4646    ContentDispositionAttachment,
    4747    ContentDispositionOther
    48 } ContentDispositionType;
     48};
    4949
    5050#if ENABLE(NOSNIFF)
Note: See TracChangeset for help on using the changeset viewer.