| Index: Source/platform/exported/WebFileSystemCallbacks.cpp
|
| diff --git a/Source/platform/exported/WebFileSystemCallbacks.cpp b/Source/platform/exported/WebFileSystemCallbacks.cpp
|
| index b57a84fee25948a3ada8e7942c3dd41d22075e3b..dc24ed797bbcf90e7efd93efc66cec147ee06219 100644
|
| --- a/Source/platform/exported/WebFileSystemCallbacks.cpp
|
| +++ b/Source/platform/exported/WebFileSystemCallbacks.cpp
|
| @@ -42,7 +42,7 @@
|
| #include "wtf/PassRefPtr.h"
|
| #include "wtf/RefCounted.h"
|
|
|
| -using namespace WebCore;
|
| +using namespace blink;
|
|
|
| namespace blink {
|
|
|
| @@ -131,7 +131,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<WebCore::FileSystemType>(type), filePath, isDirectory);
|
| + m_private->callbacks()->didResolveURL(name, rootURL, static_cast<blink::FileSystemType>(type), filePath, isDirectory);
|
| m_private.reset();
|
| }
|
|
|
|
|