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