| Index: Source/web/WebDragData.cpp
|
| diff --git a/Source/web/WebDragData.cpp b/Source/web/WebDragData.cpp
|
| index 899d0a51dcc913b2aaa676070e7e3ddae0db016a..733f383095463becf2bbed4d14a604c81e50dc92 100644
|
| --- a/Source/web/WebDragData.cpp
|
| +++ b/Source/web/WebDragData.cpp
|
| @@ -43,7 +43,7 @@
|
| #include "wtf/HashMap.h"
|
| #include "wtf/PassRefPtr.h"
|
|
|
| -using namespace WebCore;
|
| +using namespace blink;
|
|
|
| namespace blink {
|
|
|
| @@ -62,12 +62,12 @@ void WebDragData::assign(const WebDragData& other)
|
| m_private = other.m_private;
|
| }
|
|
|
| -WebDragData::WebDragData(const PassRefPtrWillBeRawPtr<WebCore::DataObject>& object)
|
| +WebDragData::WebDragData(const PassRefPtrWillBeRawPtr<blink::DataObject>& object)
|
| {
|
| m_private = object;
|
| }
|
|
|
| -WebDragData& WebDragData::operator=(const PassRefPtrWillBeRawPtr<WebCore::DataObject>& object)
|
| +WebDragData& WebDragData::operator=(const PassRefPtrWillBeRawPtr<blink::DataObject>& object)
|
| {
|
| m_private = object;
|
| return *this;
|
| @@ -98,7 +98,7 @@ WebVector<WebDragData::Item> WebDragData::items() const
|
| item.storageType = Item::StorageTypeBinaryData;
|
| item.binaryData = originalItem->sharedBuffer();
|
| } else if (originalItem->isFilename()) {
|
| - RefPtrWillBeRawPtr<WebCore::Blob> blob = originalItem->getAsFile();
|
| + RefPtrWillBeRawPtr<blink::Blob> blob = originalItem->getAsFile();
|
| if (blob->isFile()) {
|
| File* file = toFile(blob.get());
|
| if (!file->path().isEmpty()) {
|
|
|