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

Unified Diff: Source/core/platform/AsyncFileSystemCallbacks.h

Issue 23537011: FileAPI: Add WebFileSystem::resolveURL (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 3 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
Index: Source/core/platform/AsyncFileSystemCallbacks.h
diff --git a/Source/core/platform/AsyncFileSystemCallbacks.h b/Source/core/platform/AsyncFileSystemCallbacks.h
index 71342974cf88efbc1486079e347781ec4b571da0..4a65baf69bc1ef9949d5014c33026fd76f1776c8 100644
--- a/Source/core/platform/AsyncFileSystemCallbacks.h
+++ b/Source/core/platform/AsyncFileSystemCallbacks.h
@@ -50,6 +50,9 @@ public:
// Called when a requested file system is opened.
virtual void didOpenFileSystem(const String& name, const KURL& rootURL, PassOwnPtr<AsyncFileSystem>) { ASSERT_NOT_REACHED(); }
+ // Called when a file system is opened to resolve a given URL.
+ virtual void didResolveURL(const String& name, const KURL& rootURL, const String& filePath, bool isDirectory, PassOwnPtr<AsyncFileSystem>) { ASSERT_NOT_REACHED(); }
+
// Called when a file metadata is read successfully.
virtual void didReadMetadata(const FileMetadata&) { ASSERT_NOT_REACHED(); }

Powered by Google App Engine
This is Rietveld 408576698