Changeset 151254 in webkit


Ignore:
Timestamp:
Jun 5, 2013 9:18:01 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[curl] Normalize mime type information
https://bugs.webkit.org/show_bug.cgi?id=117194

Patch by Peter Gal <galpeter@inf.u-szeged.hu> on 2013-06-05
Reviewed by Brent Fulgham.

  • platform/MIMETypeRegistry.cpp: Enable MIME type normalization for curl.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r151253 r151254  
     12013-06-05  Peter Gal  <galpeter@inf.u-szeged.hu>
     2
     3        [curl] Normalize mime type information
     4        https://bugs.webkit.org/show_bug.cgi?id=117194
     5
     6        Reviewed by Brent Fulgham.
     7
     8        * platform/MIMETypeRegistry.cpp: Enable MIME type normalization for curl.
     9
    1102013-06-05  Xueqing Huang  <huangxueqing@baidu.com>
    211
  • trunk/Source/WebCore/platform/MIMETypeRegistry.cpp

    r149464 r151254  
    693693}
    694694
    695 #if !PLATFORM(QT) && !PLATFORM(BLACKBERRY)
     695#if !PLATFORM(QT) && !PLATFORM(BLACKBERRY) && !USE(CURL)
    696696String MIMETypeRegistry::getNormalizedMIMEType(const String& mimeType)
    697697{
     
    700700#endif
    701701
    702 #if PLATFORM(BLACKBERRY)
     702#if PLATFORM(BLACKBERRY) || USE(CURL)
    703703typedef HashMap<String, String> MIMETypeAssociationMap;
    704704
Note: See TracChangeset for help on using the changeset viewer.