⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 176569 in webkit


Ignore:
Timestamp:
Nov 28, 2014, 2:09:01 PM (12 years ago)
Author:
timothy_horton@apple.com
Message:

DataDetectors PageOverlay callbacks are never called
https://bugs.webkit.org/show_bug.cgi?id=139067
<rdar://problem/19086676>

Reviewed by Anders Carlsson.

  • Shared/mac/ActionMenuHitTestResult.mm:

(WebKit::ActionMenuHitTestResult::encode):
(WebKit::ActionMenuHitTestResult::decode):
Encode/decode the PageOverlay ID.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r176568 r176569  
     12014-11-26  Timothy Horton  <timothy_horton@apple.com>
     2
     3        DataDetectors PageOverlay callbacks are never called
     4        https://bugs.webkit.org/show_bug.cgi?id=139067
     5        <rdar://problem/19086676>
     6
     7        Reviewed by Anders Carlsson.
     8
     9        * Shared/mac/ActionMenuHitTestResult.mm:
     10        (WebKit::ActionMenuHitTestResult::encode):
     11        (WebKit::ActionMenuHitTestResult::decode):
     12        Encode/decode the PageOverlay ID.
     13
    1142014-11-28  Simon Fraser  <simon.fraser@apple.com>
    215
  • trunk/Source/WebKit2/Shared/mac/ActionMenuHitTestResult.mm

    r176462 r176569  
    6262
    6363        encoder << detectedDataBoundingBox;
     64        encoder << detectedDataOriginatingPageOverlay;
    6465
    6566        bool hasTextIndicator = detectedDataTextIndicator;
     
    114115            return false;
    115116
     117        if (!decoder.decode(actionMenuHitTestResult.detectedDataOriginatingPageOverlay))
     118            return false;
     119
    116120        bool hasTextIndicator;
    117121        if (!decoder.decode(hasTextIndicator))
Note: See TracChangeset for help on using the changeset viewer.