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

Unified Diff: Source/modules/filesystem/LocalFileSystem.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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/modules/filesystem/FileWriterSync.cpp ('k') | Source/modules/gamepad/NavigatorGamepad.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/LocalFileSystem.cpp
diff --git a/Source/modules/filesystem/LocalFileSystem.cpp b/Source/modules/filesystem/LocalFileSystem.cpp
index 3f264995180ca87dc88f44894ffbcbb41ce4ab84..c20df325714438e5150ec0dd5a625a892fc38860 100644
--- a/Source/modules/filesystem/LocalFileSystem.cpp
+++ b/Source/modules/filesystem/LocalFileSystem.cpp
@@ -64,7 +64,7 @@ void LocalFileSystemBase::resolveURL(ExecutionContext* context, const KURL& file
context->postTask(createCallbackTask(&fileSystemNotAllowed, callbacks));
return;
}
- WebKit::Platform::current()->fileSystem()->resolveURL(fileSystemURL, callbacks);
+ blink::Platform::current()->fileSystem()->resolveURL(fileSystemURL, callbacks);
}
void LocalFileSystemBase::requestFileSystem(ExecutionContext* context, FileSystemType type, long long size, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
@@ -74,7 +74,7 @@ void LocalFileSystemBase::requestFileSystem(ExecutionContext* context, FileSyste
return;
}
KURL storagePartition = KURL(KURL(), context->securityOrigin()->toString());
- WebKit::Platform::current()->fileSystem()->openFileSystem(storagePartition, static_cast<WebKit::WebFileSystemType>(type), callbacks);
+ blink::Platform::current()->fileSystem()->openFileSystem(storagePartition, static_cast<blink::WebFileSystemType>(type), callbacks);
}
void LocalFileSystemBase::deleteFileSystem(ExecutionContext* context, FileSystemType type, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
@@ -87,7 +87,7 @@ void LocalFileSystemBase::deleteFileSystem(ExecutionContext* context, FileSystem
return;
}
KURL storagePartition = KURL(KURL(), context->securityOrigin()->toString());
- WebKit::Platform::current()->fileSystem()->deleteFileSystem(storagePartition, static_cast<WebKit::WebFileSystemType>(type), callbacks);
+ blink::Platform::current()->fileSystem()->deleteFileSystem(storagePartition, static_cast<blink::WebFileSystemType>(type), callbacks);
}
LocalFileSystemBase::LocalFileSystemBase(PassOwnPtr<FileSystemClient> client)
« no previous file with comments | « Source/modules/filesystem/FileWriterSync.cpp ('k') | Source/modules/gamepad/NavigatorGamepad.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698