Changeset 170442 in webkit


Ignore:
Timestamp:
Jun 25, 2014 3:37:37 PM (10 years ago)
Author:
mitz@apple.com
Message:

<rdar://problem/17448049> REGRESSION (r170254): Input methods don’t work
https://bugs.webkit.org/show_bug.cgi?id=134311

Reviewed by Tim Horton.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::getSelectedRangeAsync): Removed code that accidentally put the
callback function into a throwaway EditingRangeCallback.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r170439 r170442  
     12014-06-25  Dan Bernstein  <mitz@apple.com>
     2
     3        <rdar://problem/17448049> REGRESSION (r170254): Input methods don’t work
     4        https://bugs.webkit.org/show_bug.cgi?id=134311
     5
     6        Reviewed by Tim Horton.
     7
     8        * UIProcess/WebPageProxy.cpp:
     9        (WebKit::WebPageProxy::getSelectedRangeAsync): Removed code that accidentally put the
     10        callback function into a throwaway EditingRangeCallback.
     11
    1122014-06-25  Timothy Horton  <timothy_horton@apple.com>
    213
  • trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp

    r170320 r170442  
    49734973void WebPageProxy::getSelectedRangeAsync(std::function<void (EditingRange, CallbackBase::Error)> callbackFunction)
    49744974{
    4975     RefPtr<EditingRangeCallback> callback = EditingRangeCallback::create(std::move(callbackFunction));
    4976 
    49774975    if (!isValid()) {
    4978         callback->invalidate();
     4976        callbackFunction(EditingRange(), CallbackBase::Error::Unknown);
    49794977        return;
    49804978    }
Note: See TracChangeset for help on using the changeset viewer.