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

Unified Diff: webkit/tools/test_shell/simple_file_writer.cc

Issue 10879002: kFileSystemTypeIsolated should be only used in the URL exposed to renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 8 years, 4 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/tools/test_shell/simple_file_writer.cc
diff --git a/webkit/tools/test_shell/simple_file_writer.cc b/webkit/tools/test_shell/simple_file_writer.cc
index bf48185cb7c5195f62bdc62ea3d88a06d620b499..dd529d6e83aa3367eec70d5b6b27b4a6964fefcb 100644
--- a/webkit/tools/test_shell/simple_file_writer.cc
+++ b/webkit/tools/test_shell/simple_file_writer.cc
@@ -98,7 +98,7 @@ class SimpleFileWriter::IOThreadProxy
// Returns true if it is not writable.
bool FailIfNotWritable(const FileSystemURL& url) {
- if (url.type() == fileapi::kFileSystemTypeIsolated) {
+ if (url.type() == fileapi::kFileSystemTypeDragged) {
// Write is not allowed in isolate file system in SimpleFileWriter.
DidFailOnMainThread(base::PLATFORM_FILE_ERROR_SECURITY);
return true;
« webkit/fileapi/file_system_util.h ('K') | « webkit/tools/test_shell/simple_file_system.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698