summaryrefslogtreecommitdiffstats
path: root/webkit/browser/fileapi/sandbox_directory_database.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove webkit/browser/, point everything to storage/browser/ insteadpilgrim2014-09-101-5/+0
| | | | | | | | | BUG=338338 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/559063002 Cr-Commit-Position: refs/heads/master@{#294258}
* Migrate webkit/browser/ to storage/browser/pilgrim2014-09-051-132/+2
| | | | | | | | | | | | using TBR because Darin told me he defers to James' judgement. Using NOTRY because there is one presubmit error (dump_file_system.cc was moved and it spews printf). BUG=338338 TBR=darin@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/539143002 Cr-Commit-Position: refs/heads/master@{#293547}
* Split storage macros into storage and storage_commonpilgrim2014-08-301-1/+1
| | | | | | | | | BUG=338338 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/520913003 Cr-Commit-Position: refs/heads/master@{#292743}
* Combine storage_browser_export.h and storage_common_export.hpilgrim2014-08-281-1/+1
| | | | | | | | | BUG=338338 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/512253002 Cr-Commit-Position: refs/heads/master@{#292435}
* Rename storage-related export macros and build targetspilgrim2014-08-251-3/+3
| | | | | | | | | | | | | Part of the refactoring effort to consolidate all fileapi/quota/webkit_database/webkit_blob-related code into a single namespace, directory, and component. Discussed here: https://groups.google.com/a/chromium.org/forum/#!topic/storage-dev/aQall8GOrS4 This is itself part of a larger refactoring effort to get rid of the webkit/ directory, as recorded in the following bug: BUG=338338 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/498273002 Cr-Commit-Position: refs/heads/master@{#291718}
* Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common ↵pilgrim@chromium.org2014-08-221-2/+2
| | | | | | | | | | | | | | | | namespaces into single storage namespace As discussed here: https://groups.google.com/a/chromium.org/forum/#!topic/storage-dev/aQall8GOrS4 BUG=338338 TBR=cevans NOTRY=true Review URL: https://codereview.chromium.org/492873002 Cr-Commit-Position: refs/heads/master@{#291485} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@291485 0039d316-1c4b-4281-b951-d872f2087c98
* Move all remaining fileapi and quota unit tests from webkit/ to content/pilgrim@chromium.org2014-04-301-1/+5
| | | | | | | | | BUG=338338 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/253753007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267007 0039d316-1c4b-4281-b951-d872f2087c98
* [FileAPI] Replace default leveldb::Env with leveldb::MemEnv in tests.tzik@chromium.org2014-01-291-3/+7
| | | | | | | | | | | Use in-memory LevelDB in tests that don't test LevelDB behavior itself. BUG=331988 R=kinuko@chromium.org, nhiroki@chromium.org, sky@chromium.org Review URL: https://codereview.chromium.org/145693005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@247631 0039d316-1c4b-4281-b951-d872f2087c98
* Convert Media Galleries to use base::Filervargas@chromium.org2014-01-271-2/+2
| | | | | | | | | | | | | | | Unfortunately, this brings in changes to webkit/browser/fileapi, and once that changes, a lot of files have to be updated. The bright side is that most of the collateral changes are just trivial renaming of PlatformFileError -> File::Error and PlatformFileInfo -> File::Info BUG=322664 Review URL: https://codereview.chromium.org/145303002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@247301 0039d316-1c4b-4281-b951-d872f2087c98
* Return NOT_A_DIRECTORY error if there's a file in a path chain in ↵kinuko@chromium.org2013-11-251-1/+2
| | | | | | | | | | | CreateDirectory(recursive) BUG=none TEST=ObfuscatedFileUtilTest.CreateDirectory_NotADirectoryInRecursive Review URL: https://codereview.chromium.org/85233002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237056 0039d316-1c4b-4281-b951-d872f2087c98
* Opening a path in non-directory should fail with NOT_A_DIRECTORY.kinuko@chromium.org2013-09-181-1/+2
| | | | | | | | | BUG=293998 TEST=ObfuscatedFileUtilTest.OpenPathInNonDirectory Review URL: https://chromiumcodereview.appspot.com/23440045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@223845 0039d316-1c4b-4281-b951-d872f2087c98
* Use a direct include of time headers in webkit/, win8/.avi@chromium.org2013-06-281-1/+1
| | | | | | | | | | BUG=254986 TEST=none TBR=ben@chromium.org Review URL: https://codereview.chromium.org/18029013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209154 0039d316-1c4b-4281-b951-d872f2087c98
* Fix webkit_storage exports definitionskinuko@chromium.org2013-06-131-3/+3
| | | | | | | | | | | | Also removes webkit/storage/* BUG=239109 R=tzik@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/16701004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205996 0039d316-1c4b-4281-b951-d872f2087c98
* Prepopulate directory database for isolated originskinuko@chromium.org2013-06-041-0/+1
| | | | | | | | | | | | This reduces end-to-end OpenFileSystem + CreateFile cost by ~100ms (measured in JS layer) for packaged apps. BUG=242272 R=tzik@chromium.org Review URL: https://codereview.chromium.org/15724009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203877 0039d316-1c4b-4281-b951-d872f2087c98
* Move FileAPI sandboxed filesystem related code from webkit/fileapi to ↵kinuko@chromium.org2013-05-211-0/+124
webkit/browser/fileapi This moves following files from webkit/fileapi to webkit/browser/fileapi: - obfuscated_file_util* - sandbox_database_test_helper* - sandbox_directory_database* - sandbox_file_stream_writer* - sandbox_mount_point_provider* - sandbox_origin_database* - sandbox_quota_observer* BUG=239710 TBR=avi@chromium.org, calvinlo@chromium.org, thestig@chromium.org, tzik@chromium.org Review URL: https://codereview.chromium.org/15442002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@201229 0039d316-1c4b-4281-b951-d872f2087c98