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

Unified Diff: webkit/fileapi/file_system_context.cc

Issue 10817006: Add more FS types and introduce type field into IsolatedContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed Media filesystem type for now Created 8 years, 5 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: webkit/fileapi/file_system_context.cc
diff --git a/webkit/fileapi/file_system_context.cc b/webkit/fileapi/file_system_context.cc
index 009c073230469eaa798e95fcf0cea74399b58ef7..ae639388dabe789128adf8ea8e86bcf37c20dda3 100644
--- a/webkit/fileapi/file_system_context.cc
+++ b/webkit/fileapi/file_system_context.cc
@@ -123,6 +123,7 @@ FileSystemMountPointProvider* FileSystemContext::GetMountPointProvider(
case kFileSystemTypeExternal:
return external_provider_.get();
case kFileSystemTypeIsolated:
+ case kFileSystemTypeDragged:
tzik 2012/07/24 23:15:11 Could you move this just above kFileSystemTypeUnkn
kinuko 2012/07/25 00:05:45 In this patch true, though it may not hold forever
return isolated_provider_.get();
default:
if (provider_map_.find(type) != provider_map_.end())

Powered by Google App Engine
This is Rietveld 408576698