Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(453)

Unified Diff: Source/web/WebDragData.cpp

Issue 468083003: Cleanup namespace usage in Source/web/Web[A-H]*.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebasing Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/WebDocumentType.cpp ('k') | Source/web/WebElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()) {
« no previous file with comments | « Source/web/WebDocumentType.cpp ('k') | Source/web/WebElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698