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

Unified Diff: Source/core/fileapi/File.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/core/fetch/ResourceLoader.cpp ('k') | Source/core/frame/DOMWindow.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fileapi/File.cpp
diff --git a/Source/core/fileapi/File.cpp b/Source/core/fileapi/File.cpp
index 6ae199d1c429dbfabe7bde2c6d926036bb07df2a..02d970030e80e3217c0757c910f57944e7c96330 100644
--- a/Source/core/fileapi/File.cpp
+++ b/Source/core/fileapi/File.cpp
@@ -95,7 +95,7 @@ PassRefPtr<File> File::createWithRelativePath(const String& path, const String&
File::File(const String& path, ContentTypeLookupPolicy policy)
: Blob(BlobDataHandle::create(createBlobDataForFile(path, policy), -1))
, m_path(path)
- , m_name(WebKit::Platform::current()->fileUtilities()->baseName(path))
+ , m_name(blink::Platform::current()->fileUtilities()->baseName(path))
, m_snapshotSize(-1)
, m_snapshotModificationTime(invalidFileTime())
{
@@ -115,7 +115,7 @@ File::File(const String& path, const String& name, ContentTypeLookupPolicy polic
File::File(const String& path, PassRefPtr<BlobDataHandle> blobDataHandle)
: Blob(blobDataHandle)
, m_path(path)
- , m_name(WebKit::Platform::current()->fileUtilities()->baseName(path))
+ , m_name(blink::Platform::current()->fileUtilities()->baseName(path))
, m_snapshotSize(-1)
, m_snapshotModificationTime(invalidFileTime())
{
« no previous file with comments | « Source/core/fetch/ResourceLoader.cpp ('k') | Source/core/frame/DOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698