summaryrefslogtreecommitdiffstats
path: root/webkit/browser/fileapi/open_file_system_mode.h
diff options
context:
space:
mode:
authorkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-29 07:44:40 +0000
committerkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-29 07:44:40 +0000
commit22dea52cdc3fd2eac4781f1eb2993550ea2b0dba (patch)
tree3fe1542b84e742e62aab2185d2b2eefdac877ce0 /webkit/browser/fileapi/open_file_system_mode.h
parent8f8345c550c59f55f9e795bfad503e404b1291e3 (diff)
downloadchromium_src-22dea52cdc3fd2eac4781f1eb2993550ea2b0dba.zip
chromium_src-22dea52cdc3fd2eac4781f1eb2993550ea2b0dba.tar.gz
chromium_src-22dea52cdc3fd2eac4781f1eb2993550ea2b0dba.tar.bz2
Rename FileSystemMountPointProvider::ValidateFileSystemRoot to OpenFileSystem
This patch does: - Rename ValidateFileSystemRoot() to OpenFileSystem() to make it clearer what the method does (as the method is called in response to OpenFileSystem request from the renderer) - Also change boolean 'create' parameter to an enum (OpenFileSystemMode) BUG=243216 R=benjhayden@chromium.org, kinaba@chromium.org, tzik@chromium.org Review URL: https://codereview.chromium.org/16043006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202801 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/browser/fileapi/open_file_system_mode.h')
-rw-r--r--webkit/browser/fileapi/open_file_system_mode.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/webkit/browser/fileapi/open_file_system_mode.h b/webkit/browser/fileapi/open_file_system_mode.h
new file mode 100644
index 0000000..72a2bcb
--- /dev/null
+++ b/webkit/browser/fileapi/open_file_system_mode.h
@@ -0,0 +1,22 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef WEBKIT_BROWSER_FILEAPI_OPEN_FILE_SYSTEM_MODE_H_
+#define WEBKIT_BROWSER_FILEAPI_OPEN_FILE_SYSTEM_MODE_H_
+
+namespace fileapi {
+
+// Determines the behavior on OpenFileSystem when a specified
+// FileSystem does not exist.
+// Specifying CREATE_IF_NONEXISTENT may make actual modification on
+// disk (e.g. creating a root directory, setting up a metadata database etc)
+// if the filesystem hasn't been initialized.
+enum OpenFileSystemMode {
+ OPEN_FILE_SYSTEM_CREATE_IF_NONEXISTENT,
+ OPEN_FILE_SYSTEM_FAIL_IF_NONEXISTENT,
+};
+
+} // namespace fileapi
+
+#endif // WEBKIT_BROWSER_FILEAPI_OPEN_FILE_SYSTEM_MODE_H_