Title: [143589] trunk/Source/WebCore
Revision
143589
Author
[email protected]
Date
2013-02-21 04:40:22 -0800 (Thu, 21 Feb 2013)

Log Message

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

Patch by Alberto Garcia <[email protected]> on 2013-02-21
Reviewed by Carlos Garcia Campos.

This changed in r141981.

* platform/network/blackberry/ResourceHandleBlackBerry.cpp:
(WebCore::ResourceHandle::start):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (143588 => 143589)


--- trunk/Source/WebCore/ChangeLog	2013-02-21 12:39:47 UTC (rev 143588)
+++ trunk/Source/WebCore/ChangeLog	2013-02-21 12:40:22 UTC (rev 143589)
@@ -1,5 +1,17 @@
 2013-02-21  Alberto Garcia  <[email protected]>
 
+        [BlackBerry] Fix access to ResourceHandle::context
+        https://bugs.webkit.org/show_bug.cgi?id=110443
+
+        Reviewed by Carlos Garcia Campos.
+
+        This changed in r141981.
+
+        * platform/network/blackberry/ResourceHandleBlackBerry.cpp:
+        (WebCore::ResourceHandle::start):
+
+2013-02-21  Alberto Garcia  <[email protected]>
+
         [BlackBerry] GraphicsLayerBlackBerry: rename showDebugBorder to isShowingDebugBorder
         https://bugs.webkit.org/show_bug.cgi?id=110453
 

Modified: trunk/Source/WebCore/platform/network/blackberry/ResourceHandleBlackBerry.cpp (143588 => 143589)


--- trunk/Source/WebCore/platform/network/blackberry/ResourceHandleBlackBerry.cpp	2013-02-21 12:39:47 UTC (rev 143588)
+++ trunk/Source/WebCore/platform/network/blackberry/ResourceHandleBlackBerry.cpp	2013-02-21 12:40:22 UTC (rev 143589)
@@ -113,7 +113,7 @@
         return false;
 
     // FIXME: clean up use of Frame now that we have NetworkingContext (see RIM Bug #1515)
-    Frame* frame = static_cast<FrameNetworkingContextBlackBerry*>(context)->frame();
+    Frame* frame = static_cast<FrameNetworkingContextBlackBerry*>(d->m_context.get())->frame();
     if (!frame || !frame->loader() || !frame->loader()->client() || !client())
         return false;
     int playerId = static_cast<FrameLoaderClientBlackBerry*>(frame->loader()->client())->playerId();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to