Index: Source/web/ContextMenuClientImpl.cpp |
diff --git a/Source/web/ContextMenuClientImpl.cpp b/Source/web/ContextMenuClientImpl.cpp |
index 78d8ee134c462c668fdc8a8d8dc7abdb33a01840..517305b7570e797255ab3ac8d6ee9ef5271aafa6 100644 |
--- a/Source/web/ContextMenuClientImpl.cpp |
+++ b/Source/web/ContextMenuClientImpl.cpp |
@@ -80,7 +80,7 @@ |
#include "web/WebViewImpl.h" |
#include "wtf/text/WTFString.h" |
-using namespace WebCore; |
+using namespace blink; |
namespace blink { |
@@ -179,7 +179,7 @@ static String selectMisspellingAsync(LocalFrame* selectedFrame, String& descript |
return markerRange->text(); |
} |
-void ContextMenuClientImpl::showContextMenu(const WebCore::ContextMenu* defaultMenu) |
+void ContextMenuClientImpl::showContextMenu(const blink::ContextMenu* defaultMenu) |
{ |
// Displaying the context menu in this function is a big hack as we don't |
// have context, i.e. whether this is being invoked via a script or in |
@@ -438,7 +438,7 @@ static void populateSubMenuItems(const Vector<ContextMenuItem>& inputMenu, WebVe |
subMenuItems.swap(outputItems); |
} |
-void ContextMenuClientImpl::populateCustomMenuItems(const WebCore::ContextMenu* defaultMenu, WebContextMenuData* data) |
+void ContextMenuClientImpl::populateCustomMenuItems(const blink::ContextMenu* defaultMenu, WebContextMenuData* data) |
{ |
populateSubMenuItems(defaultMenu->items(), data->customItems); |
} |