Title: [125930] trunk/Source/WebKit2
- Revision
- 125930
- Author
- [email protected]
- Date
- 2012-08-17 13:43:34 -0700 (Fri, 17 Aug 2012)
Log Message
[EFL] REGRESSION(r125923): Breaks EFL build
https://bugs.webkit.org/show_bug.cgi?id=94376
Patch by Sudarsana Nagineni <[email protected]> on 2012-08-17
Reviewed by Alexey Proskuryakov.
Fix EFL build break after r125923.
* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::didReceiveIntentForFrame):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (125929 => 125930)
--- trunk/Source/WebKit2/ChangeLog 2012-08-17 20:42:22 UTC (rev 125929)
+++ trunk/Source/WebKit2/ChangeLog 2012-08-17 20:43:34 UTC (rev 125930)
@@ -1,3 +1,15 @@
+2012-08-17 Sudarsana Nagineni <[email protected]>
+
+ [EFL] REGRESSION(r125923): Breaks EFL build
+ https://bugs.webkit.org/show_bug.cgi?id=94376
+
+ Reviewed by Alexey Proskuryakov.
+
+ Fix EFL build break after r125923.
+
+ * UIProcess/WebPageProxy.cpp:
+ (WebKit::WebPageProxy::didReceiveIntentForFrame):
+
2012-08-17 Alexey Proskuryakov <[email protected]>
Access m_process directly in WebPageProxy.cpp
Modified: trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp (125929 => 125930)
--- trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp 2012-08-17 20:42:22 UTC (rev 125929)
+++ trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp 2012-08-17 20:43:34 UTC (rev 125930)
@@ -2206,7 +2206,7 @@
WebFrameProxy* frame = m_process->webFrame(frameID);
MESSAGE_CHECK(frame);
- RefPtr<WebIntentData> webIntentData = WebIntentData::create(intentData, m_process);
+ RefPtr<WebIntentData> webIntentData = WebIntentData::create(intentData, m_process.get());
m_loaderClient.didReceiveIntentForFrame(this, frame, webIntentData.get(), userData.get());
}
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes