Changeset 167760 in webkit


Ignore:
Timestamp:
Apr 24, 2014 9:18:34 AM (10 years ago)
Author:
ryuan.choi@samsung.com
Message:

Remove screenColorProfile()
https://bugs.webkit.org/show_bug.cgi?id=132035

Reviewed by Darin Adler.

Only chromium used screenColorProfile() since r120789.

  • platform/PlatformScreen.h:
  • platform/efl/PlatformScreenEfl.cpp:

(WebCore::screenColorProfile): Deleted.

  • platform/gtk/PlatformScreenGtk.cpp:

(WebCore::screenColorProfile): Deleted.

  • platform/image-decoders/ImageDecoder.h:

(WebCore::ImageDecoder::qcmsOutputDeviceProfile):

  • platform/ios/PlatformScreenIOS.mm:

(WebCore::screenColorProfile): Deleted.

  • platform/mac/PlatformScreenMac.mm:

(WebCore::screenColorProfile): Deleted.

  • platform/win/PlatformScreenWin.cpp:

(WebCore::screenColorProfile): Deleted.

Location:
trunk/Source/WebCore
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r167758 r167760  
     12014-04-24  Ryuan Choi  <ryuan.choi@samsung.com>
     2
     3        Remove screenColorProfile()
     4        https://bugs.webkit.org/show_bug.cgi?id=132035
     5
     6        Reviewed by Darin Adler.
     7
     8        Only chromium used screenColorProfile() since r120789.
     9
     10        * platform/PlatformScreen.h:
     11        * platform/efl/PlatformScreenEfl.cpp:
     12        (WebCore::screenColorProfile): Deleted.
     13        * platform/gtk/PlatformScreenGtk.cpp:
     14        (WebCore::screenColorProfile): Deleted.
     15        * platform/image-decoders/ImageDecoder.h:
     16        (WebCore::ImageDecoder::qcmsOutputDeviceProfile):
     17        * platform/ios/PlatformScreenIOS.mm:
     18        (WebCore::screenColorProfile): Deleted.
     19        * platform/mac/PlatformScreenMac.mm:
     20        (WebCore::screenColorProfile): Deleted.
     21        * platform/win/PlatformScreenWin.cpp:
     22        (WebCore::screenColorProfile): Deleted.
     23
    1242014-04-24  Zalan Bujtas  <zalan@apple.com>
    225
  • trunk/Source/WebCore/platform/PlatformScreen.h

    r165676 r167760  
    5656    FloatRect screenRect(Widget*);
    5757    FloatRect screenAvailableRect(Widget*);
    58     void screenColorProfile(ColorProfile&);
    5958
    6059#if PLATFORM(MAC)
  • trunk/Source/WebCore/platform/efl/PlatformScreenEfl.cpp

    r165676 r167760  
    110110}
    111111
    112 void screenColorProfile(ColorProfile&)
    113 {
    114     notImplemented();
    115112}
    116 
    117 }
  • trunk/Source/WebCore/platform/gtk/PlatformScreenGtk.cpp

    r165676 r167760  
    127127}
    128128
    129 void screenColorProfile(ColorProfile&)
    130 {
    131     notImplemented();
    132 }
    133 
    134129} // namespace WebCore
  • trunk/Source/WebCore/platform/image-decoders/ImageDecoder.h

    r167746 r167760  
    323323                    CFRelease(iccProfile);
    324324                }
    325 #else
    326                 // FIXME: add support for multiple monitors.
    327                 ColorProfile profile;
    328                 screenColorProfile(profile);
    329                 if (!profile.isEmpty())
    330                     outputDeviceProfile = qcms_profile_from_memory(profile.data(), profile.size());
    331325#endif
    332326                if (outputDeviceProfile && qcms_profile_is_bogus(outputDeviceProfile)) {
  • trunk/Source/WebCore/platform/ios/PlatformScreenIOS.mm

    r167481 r167760  
    8989}
    9090
    91 void screenColorProfile(ColorProfile&)
    92 {
    93     notImplemented();
    94 }
    95 
    9691} // namespace WebCore
  • trunk/Source/WebCore/platform/mac/PlatformScreenMac.mm

    r165676 r167760  
    106106}
    107107
    108 void screenColorProfile(ColorProfile&)
    109 {
    110     notImplemented();
    111 }
    112 
    113108NSScreen *screenForWindow(NSWindow *window)
    114109{
  • trunk/Source/WebCore/platform/win/PlatformScreenWin.cpp

    r165676 r167760  
    107107}
    108108
    109 void screenColorProfile(ColorProfile&)
    110 {
    111     notImplemented();
    112 }
    113 
    114109} // namespace WebCore
Note: See TracChangeset for help on using the changeset viewer.