summaryrefslogtreecommitdiffstats
path: root/webkit/tools/test_shell
diff options
context:
space:
mode:
authoradamk@chromium.org <adamk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-15 20:39:34 +0000
committeradamk@chromium.org <adamk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-15 20:39:34 +0000
commit19e38d78c183dd3e3140237fa9acdb7fc157f5d1 (patch)
treeed1778e0e4e4079fbdf7b8ae0cf6074c8f966993 /webkit/tools/test_shell
parent37682c1c1847e57f4f9133337c04f4ef153157fb (diff)
downloadchromium_src-19e38d78c183dd3e3140237fa9acdb7fc157f5d1.zip
chromium_src-19e38d78c183dd3e3140237fa9acdb7fc157f5d1.tar.gz
chromium_src-19e38d78c183dd3e3140237fa9acdb7fc157f5d1.tar.bz2
Use an unlimited_quota in TestShell's SimpleFileSystem to allow
HTTP LayoutTests to access the File APIs. R=ericu@chromium.org,michaeln@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/6695030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78276 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/test_shell')
-rw-r--r--webkit/tools/test_shell/simple_file_system.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/tools/test_shell/simple_file_system.cc b/webkit/tools/test_shell/simple_file_system.cc
index 6016255..c0e3731 100644
--- a/webkit/tools/test_shell/simple_file_system.cc
+++ b/webkit/tools/test_shell/simple_file_system.cc
@@ -125,7 +125,7 @@ SimpleFileSystem::SimpleFileSystem() {
file_system_dir_.path(),
false /* incognito */,
true /* allow_file_access */,
- false /* unlimited_quota */);
+ true /* unlimited_quota */);
} else {
LOG(WARNING) << "Failed to create a temp dir for the filesystem."
"FileSystem feature will be disabled.";