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

Unified Diff: Source/platform/exported/WebFileSystemCallbacks.cpp

Issue 458313005: Cleanup namespace usage from animation to exported in platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Cleanup namespace usage from animation to exported in platform/ 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/platform/exported/WebData.cpp ('k') | Source/platform/exported/WebHTTPBody.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/exported/WebFileSystemCallbacks.cpp
diff --git a/Source/platform/exported/WebFileSystemCallbacks.cpp b/Source/platform/exported/WebFileSystemCallbacks.cpp
index dc24ed797bbcf90e7efd93efc66cec147ee06219..c57ef23aa96c8422056d0c2898822411a248d566 100644
--- a/Source/platform/exported/WebFileSystemCallbacks.cpp
+++ b/Source/platform/exported/WebFileSystemCallbacks.cpp
@@ -42,8 +42,6 @@
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
-using namespace blink;
-
namespace blink {
class WebFileSystemCallbacksPrivate : public RefCounted<WebFileSystemCallbacksPrivate> {
@@ -131,7 +129,7 @@ void WebFileSystemCallbacks::didOpenFileSystem(const WebString& name, const WebU
void WebFileSystemCallbacks::didResolveURL(const WebString& name, const WebURL& rootURL, WebFileSystemType type, const WebString& filePath, bool isDirectory)
{
ASSERT(!m_private.isNull());
- m_private->callbacks()->didResolveURL(name, rootURL, static_cast<blink::FileSystemType>(type), filePath, isDirectory);
+ m_private->callbacks()->didResolveURL(name, rootURL, static_cast<FileSystemType>(type), filePath, isDirectory);
m_private.reset();
}
« no previous file with comments | « Source/platform/exported/WebData.cpp ('k') | Source/platform/exported/WebHTTPBody.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698