| Index: net/http/http_content_disposition.h
|
| diff --git a/net/http/http_content_disposition.h b/net/http/http_content_disposition.h
|
| index 2b4ca709eb3cbb581bab6c9101eda889fc0a3141..41b0b71cb746090ebe9b2df4af7cccc569202b78 100644
|
| --- a/net/http/http_content_disposition.h
|
| +++ b/net/http/http_content_disposition.h
|
| @@ -29,25 +29,22 @@ class NET_EXPORT HttpContentDisposition {
|
| // The disposition-type is not 'inline' or 'attachment'.
|
| HAS_UNKNOWN_DISPOSITION_TYPE = 1 << 1,
|
|
|
| - // Has a valid non-empty 'name' attribute.
|
| - HAS_NAME = 1 << 2,
|
| -
|
| // Has a valid non-empty 'filename' attribute.
|
| - HAS_FILENAME = 1 << 3,
|
| + HAS_FILENAME = 1 << 2,
|
|
|
| // Has a valid non-empty 'filename*' attribute.
|
| - HAS_EXT_FILENAME = 1 << 4,
|
| + HAS_EXT_FILENAME = 1 << 3,
|
|
|
| // The following fields are properties of the 'filename' attribute:
|
|
|
| // Quoted-string contains non-ASCII characters.
|
| - HAS_NON_ASCII_STRINGS = 1 << 5,
|
| + HAS_NON_ASCII_STRINGS = 1 << 4,
|
|
|
| // Quoted-string contains percent-encoding.
|
| - HAS_PERCENT_ENCODED_STRINGS = 1 << 6,
|
| + HAS_PERCENT_ENCODED_STRINGS = 1 << 5,
|
|
|
| // Quoted-string contains RFC 2047 encoded words.
|
| - HAS_RFC2047_ENCODED_STRINGS = 1 << 7
|
| + HAS_RFC2047_ENCODED_STRINGS = 1 << 6
|
| };
|
|
|
| HttpContentDisposition(const std::string& header,
|
|
|