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

Unified Diff: webkit/fileapi/file_system_context.cc

Issue 7057032: Integrated obfuscation with quota; all unit tests now pass (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Eliminated a vector copy Created 9 years, 7 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
« no previous file with comments | « no previous file | webkit/fileapi/file_system_origin_database.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_context.cc
diff --git a/webkit/fileapi/file_system_context.cc b/webkit/fileapi/file_system_context.cc
index ff4520a630866ffbc1df56578994b9e8946f79ae..16bf067a35e0c30445a7c4bfae0d5624482eb1b7 100644
--- a/webkit/fileapi/file_system_context.cc
+++ b/webkit/fileapi/file_system_context.cc
@@ -80,7 +80,7 @@ bool FileSystemContext::DeleteDataForOriginOnFileThread(
// Delete the upper level directory.
FilePath path_for_origin =
- sandbox_provider()->GetBaseDirectoryForOrigin(origin_url);
+ sandbox_provider()->GetBaseDirectoryForOrigin(origin_url, false);
if (!file_util::PathExists(path_for_origin))
return true;
return file_util::Delete(path_for_origin, true /* recursive */);
« no previous file with comments | « no previous file | webkit/fileapi/file_system_origin_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698