Changeset 143095 in webkit


Ignore:
Timestamp:
Feb 15, 2013 8:31:14 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r143088.
http://trac.webkit.org/changeset/143088
https://bugs.webkit.org/show_bug.cgi?id=110000

Breaks the build (Requested by dgorbik on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2013-02-15

Source/WebCore:

  • platform/mac/WebCoreSystemInterface.h:
  • platform/mac/WebCoreSystemInterface.mm:

Source/WebKit/mac:

  • WebCoreSupport/WebSystemInterface.mm:

(InitWebCoreSystemInterface):

Source/WebKit2:

  • WebProcess/WebCoreSupport/mac/WebSystemInterface.mm:

(InitWebCoreSystemInterface):

Location:
trunk/Source
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r143094 r143095  
     12013-02-15  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r143088.
     4        http://trac.webkit.org/changeset/143088
     5        https://bugs.webkit.org/show_bug.cgi?id=110000
     6
     7        Breaks the build (Requested by dgorbik on #webkit).
     8
     9        * platform/mac/WebCoreSystemInterface.h:
     10        * platform/mac/WebCoreSystemInterface.mm:
     11
    1122013-02-15  Chris Rogers  <crogers@google.com>
    213
  • trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.h

    r143088 r143095  
    352352#endif
    353353
     354typedef enum {
     355    wkCaptionFontStyleDefault = 0,
     356    wkCaptionFontStyleMonospacedWithSerif,
     357    wkCaptionFontStyleProportionalWithSerif,
     358    wkCaptionFontStyleMonospacedWithoutSerif,
     359    wkCaptionFontStyleProportionalWithoutSerif,
     360    wkCaptionFontStyleCasual,
     361    wkCaptionFontStyleCursive,
     362    wkCaptionFontStyleSmallCapital,
     363    wkCaptionFontStyleMax
     364} wkCaptionFontStyle;
     365
     366typedef enum {
     367    wkCaptionTextEdgeStyleUndefined = 0,
     368    wkCaptionTextEdgeStyleNone,
     369    wkCaptionTextEdgeStyleRaised,
     370    wkCaptionTextEdgeStyleDepressed,
     371    wkCaptionTextEdgeStyleUniform,
     372    wkCaptionTextEdgeStyleDropShadow,
     373    wkCaptionTextEdgeStyleMax
     374} wkCaptionTextEdgeStyle;
     375
     376extern bool (*wkCaptionAppearanceHasUserPreferences)(void);
     377extern bool (*wkCaptionAppearanceShowCaptionsWhenAvailable)(void);
     378extern CGColorRef(*wkCaptionAppearanceCopyForegroundColor)(void);
     379extern CGColorRef(*wkCaptionAppearanceCopyBackgroundColor)(void);
     380extern CGColorRef(*wkCaptionAppearanceCopyWindowColor)(void);
     381extern bool(*wkCaptionAppearanceGetForegroundOpacity)(CGFloat*);
     382extern bool(*wkCaptionAppearanceGetBackgroundOpacity)(CGFloat*);
     383extern bool(*wkCaptionAppearanceGetWindowOpacity)(CGFloat*);
     384extern CGFontRef(*wkCaptionAppearanceCopyFontForStyle)(int);
     385extern bool(*wkCaptionAppearanceGetRelativeCharacterSize)(CGFloat*);
     386extern int(*wkCaptionAppearanceGetTextEdgeStyle)(void);
     387extern CFStringRef(*wkCaptionAppearanceGetSettingsChangedNotification)(void);
    354388}
    355389
  • trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.mm

    r143088 r143095  
    223223CGFloat (*wkNSReboundDeltaForElasticDelta)(CGFloat delta);
    224224#endif
     225
     226bool (*wkCaptionAppearanceHasUserPreferences)(void);
     227bool (*wkCaptionAppearanceShowCaptionsWhenAvailable)(void);
     228CGColorRef(*wkCaptionAppearanceCopyForegroundColor)(void);
     229CGColorRef(*wkCaptionAppearanceCopyBackgroundColor)(void);
     230CGColorRef(*wkCaptionAppearanceCopyWindowColor)(void);
     231bool(*wkCaptionAppearanceGetForegroundOpacity)(CGFloat*);
     232bool(*wkCaptionAppearanceGetBackgroundOpacity)(CGFloat*);
     233bool(*wkCaptionAppearanceGetWindowOpacity)(CGFloat*);
     234CGFontRef(*wkCaptionAppearanceCopyFontForStyle)(int);
     235bool(*wkCaptionAppearanceGetRelativeCharacterSize)(CGFloat*);
     236int(*wkCaptionAppearanceGetTextEdgeStyle)(void);
     237CFStringRef(*wkCaptionAppearanceGetSettingsChangedNotification)(void);
  • trunk/Source/WebKit/mac/ChangeLog

    r143088 r143095  
     12013-02-15  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r143088.
     4        http://trac.webkit.org/changeset/143088
     5        https://bugs.webkit.org/show_bug.cgi?id=110000
     6
     7        Breaks the build (Requested by dgorbik on #webkit).
     8
     9        * WebCoreSupport/WebSystemInterface.mm:
     10        (InitWebCoreSystemInterface):
     11
    1122013-02-15  Eric Carlson  <eric.carlson@apple.com>
    213
  • trunk/Source/WebKit/mac/WebCoreSupport/WebSystemInterface.mm

    r143088 r143095  
    221221#endif
    222222
     223    INIT(CaptionAppearanceHasUserPreferences);
     224    INIT(CaptionAppearanceShowCaptionsWhenAvailable);
     225    INIT(CaptionAppearanceCopyForegroundColor);
     226    INIT(CaptionAppearanceCopyBackgroundColor);
     227    INIT(CaptionAppearanceCopyWindowColor);
     228    INIT(CaptionAppearanceGetForegroundOpacity);
     229    INIT(CaptionAppearanceGetBackgroundOpacity);
     230    INIT(CaptionAppearanceGetWindowOpacity);
     231    INIT(CaptionAppearanceCopyFontForStyle);
     232    INIT(CaptionAppearanceGetRelativeCharacterSize);
     233    INIT(CaptionAppearanceGetTextEdgeStyle);
     234    INIT(CaptionAppearanceGetSettingsChangedNotification);
     235
    223236#endif
    224237    didInit = true;
  • trunk/Source/WebKit2/ChangeLog

    r143091 r143095  
     12013-02-15  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r143088.
     4        http://trac.webkit.org/changeset/143088
     5        https://bugs.webkit.org/show_bug.cgi?id=110000
     6
     7        Breaks the build (Requested by dgorbik on #webkit).
     8
     9        * WebProcess/WebCoreSupport/mac/WebSystemInterface.mm:
     10        (InitWebCoreSystemInterface):
     11
    1122013-02-15  Kiran Muppala  <cmuppala@apple.com>
    213
  • trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebSystemInterface.mm

    r143088 r143095  
    184184#endif
    185185
     186        INIT(CaptionAppearanceHasUserPreferences);
     187        INIT(CaptionAppearanceShowCaptionsWhenAvailable);
     188        INIT(CaptionAppearanceCopyForegroundColor);
     189        INIT(CaptionAppearanceCopyBackgroundColor);
     190        INIT(CaptionAppearanceCopyWindowColor);
     191        INIT(CaptionAppearanceGetForegroundOpacity);
     192        INIT(CaptionAppearanceGetBackgroundOpacity);
     193        INIT(CaptionAppearanceGetWindowOpacity);
     194        INIT(CaptionAppearanceCopyFontForStyle);
     195        INIT(CaptionAppearanceGetRelativeCharacterSize);
     196        INIT(CaptionAppearanceGetTextEdgeStyle);
     197        INIT(CaptionAppearanceGetSettingsChangedNotification);
    186198    });
    187199}
Note: See TracChangeset for help on using the changeset viewer.