Bug 139715 - Implement and adopt two new TextIndicator presentation animations
Summary: Implement and adopt two new TextIndicator presentation animations
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Tim Horton
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-12-16 17:55 PST by Tim Horton
Modified: 2014-12-16 19:02 PST (History)
8 users (show)

See Also:


Attachments
Patch (56.68 KB, patch)
2014-12-16 17:57 PST, Tim Horton
no flags Details | Formatted Diff | Diff
Patch (57.33 KB, patch)
2014-12-16 18:34 PST, Tim Horton
andersca: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Tim Horton 2014-12-16 17:55:37 PST
Implement and adopt two new TextIndicator presentation animations
Comment 1 Tim Horton 2014-12-16 17:57:28 PST
Created attachment 243413 [details]
Patch
Comment 2 Tim Horton 2014-12-16 18:34:45 PST
Created attachment 243420 [details]
Patch
Comment 3 Anders Carlsson 2014-12-16 18:35:36 PST
Comment on attachment 243413 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=243413&action=review

> Source/WebCore/page/mac/TextIndicatorWindow.mm:246
> +    return _textIndicator->presentationTransition() == TextIndicatorPresentationTransition::BounceAndCrossfade || _textIndicator->presentationTransition() == TextIndicatorPresentationTransition::Bounce;
> +}

Please use a switch statement here instead.

> Source/WebCore/page/mac/TextIndicatorWindow.mm:251
> +    return (_textIndicator->presentationTransition() == TextIndicatorPresentationTransition::BounceAndCrossfade || _textIndicator->presentationTransition() == TextIndicatorPresentationTransition::Crossfade) && _textIndicator->contentImageWithHighlight();
> +}

Please use a switch statement here instead.

> Source/WebCore/page/mac/TextIndicatorWindow.mm:256
> +    return _textIndicator->presentationTransition() == TextIndicatorPresentationTransition::FadeIn;
> +}

Please use a switch statement here instead.

> Source/WebCore/page/mac/TextIndicatorWindow.mm:372
> +    if (m_textIndicator->presentationTransition() == TextIndicatorPresentationTransition::Crossfade || m_textIndicator->presentationTransition() == TextIndicatorPresentationTransition::FadeIn)
> +        startFadeOut();
> +    else
> +        closeWindow();
> +}

Switch statement?

> Source/WebCore/page/mac/TextIndicatorWindow.mm:412
>      if (m_textIndicator->presentationTransition() != TextIndicatorPresentationTransition::None) {

Single-line if statement.
Comment 4 Tim Horton 2014-12-16 19:02:31 PST
http://trac.webkit.org/changeset/177427