summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-25 21:13:08 +0000
committerericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-25 21:13:08 +0000
commit21fc0cb6d545ec7fc53d8b8f3054da77bfd43ef1 (patch)
treef579ef6f82aff371346ecbce1111dfb835020676 /webkit
parent1d4a54828829cf7a4346ab956608eab122e35192 (diff)
downloadchromium_src-21fc0cb6d545ec7fc53d8b8f3054da77bfd43ef1.zip
chromium_src-21fc0cb6d545ec7fc53d8b8f3054da77bfd43ef1.tar.gz
chromium_src-21fc0cb6d545ec7fc53d8b8f3054da77bfd43ef1.tar.bz2
This is the second try at submitting http://codereview.chromium.org/3991007/show; I've removed the extra renderer
cleanup that turned out to break in the test environment. Workers who want to use FileWriter need to be granted permission to access files in the user's FileSystem directory. BUG=none; you need tests I haven't checked in yet to repro this problem. TEST=none; tests are in review, but will go in after this fix. Review URL: http://codereview.chromium.org/4057004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63781 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/fileapi/file_system_path_manager.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/fileapi/file_system_path_manager.h b/webkit/fileapi/file_system_path_manager.h
index 99e0bfc..12104ef 100644
--- a/webkit/fileapi/file_system_path_manager.h
+++ b/webkit/fileapi/file_system_path_manager.h
@@ -70,6 +70,10 @@ class FileSystemPathManager {
static const char kPersistentName[];
static const char kTemporaryName[];
+ const FilePath& base_path() const {
+ return base_path_;
+ }
+
private:
class GetFileSystemRootPathTask;