diff options
Diffstat (limited to 'WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp')
-rw-r--r-- | WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp b/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp index 499d6c2..8ec783a 100644 --- a/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp +++ b/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp @@ -39,6 +39,7 @@ #include "EWebKit.h" #include "FormState.h" #include "FrameLoader.h" +#include "FrameNetworkingContextEfl.h" #include "FrameTree.h" #include "FrameView.h" #include "HTMLFormElement.h" @@ -945,4 +946,9 @@ void FrameLoaderClientEfl::transitionToCommittedForNewPage() ewk_view_frame_main_cleared(m_view); } +PassRefPtr<FrameNetworkingContext> FrameLoaderClientEfl::createNetworkingContext() +{ + return FrameNetworkingContextEfl::create(ewk_frame_core_get(m_frame)); +} + } |