summaryrefslogtreecommitdiffstats
path: root/WebKit/efl/WebCoreSupport/ContextMenuClientEfl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/efl/WebCoreSupport/ContextMenuClientEfl.cpp')
-rw-r--r--WebKit/efl/WebCoreSupport/ContextMenuClientEfl.cpp13
1 files changed, 10 insertions, 3 deletions
diff --git a/WebKit/efl/WebCoreSupport/ContextMenuClientEfl.cpp b/WebKit/efl/WebCoreSupport/ContextMenuClientEfl.cpp
index 19c3705..37d7d5a 100644
--- a/WebKit/efl/WebCoreSupport/ContextMenuClientEfl.cpp
+++ b/WebKit/efl/WebCoreSupport/ContextMenuClientEfl.cpp
@@ -30,11 +30,11 @@
#include "ContextMenu.h"
#include "EWebKit.h"
-#include "ewk_private.h"
#include "HitTestResult.h"
#include "KURL.h"
#include "NotImplemented.h"
#include "PlatformMenuDescription.h"
+#include "ewk_private.h"
using namespace WebCore;
@@ -62,9 +62,16 @@ void ContextMenuClientEfl::contextMenuItemSelected(ContextMenuItem*, const Conte
notImplemented();
}
-void ContextMenuClientEfl::downloadURL(const KURL&)
+void ContextMenuClientEfl::downloadURL(const KURL& url)
{
- notImplemented();
+ if (!m_view)
+ return;
+
+ Ewk_Download download;
+
+ CString downloadUrl = url.prettyURL().utf8();
+ download.url = downloadUrl.data();
+ ewk_view_download_request(m_view, &download);
}
void ContextMenuClientEfl::searchWithGoogle(const Frame*)