Changeset 143589 in webkit


Ignore:
Timestamp:
Feb 21, 2013 4:40:22 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry] Fix access to ResourceHandle::context
https://bugs.webkit.org/show_bug.cgi?id=110443

Patch by Alberto Garcia <albgarcia@rim.com> on 2013-02-21
Reviewed by Carlos Garcia Campos.

This changed in r141981.

  • platform/network/blackberry/ResourceHandleBlackBerry.cpp:

(WebCore::ResourceHandle::start):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r143587 r143589  
     12013-02-21  Alberto Garcia  <albgarcia@rim.com>
     2
     3        [BlackBerry] Fix access to ResourceHandle::context
     4        https://bugs.webkit.org/show_bug.cgi?id=110443
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        This changed in r141981.
     9
     10        * platform/network/blackberry/ResourceHandleBlackBerry.cpp:
     11        (WebCore::ResourceHandle::start):
     12
    1132013-02-21  Alberto Garcia  <albgarcia@rim.com>
    214
  • trunk/Source/WebCore/platform/network/blackberry/ResourceHandleBlackBerry.cpp

    r143487 r143589  
    114114
    115115    // FIXME: clean up use of Frame now that we have NetworkingContext (see RIM Bug #1515)
    116     Frame* frame = static_cast<FrameNetworkingContextBlackBerry*>(context)->frame();
     116    Frame* frame = static_cast<FrameNetworkingContextBlackBerry*>(d->m_context.get())->frame();
    117117    if (!frame || !frame->loader() || !frame->loader()->client() || !client())
    118118        return false;
Note: See TracChangeset for help on using the changeset viewer.