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

Unified Diff: webkit/database/vfs_backend.h

Issue 15367010: Move webkit/database to webkit/browser and webkit/common. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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 | « webkit/database/databases_table_unittest.cc ('k') | webkit/database/vfs_backend.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/database/vfs_backend.h
===================================================================
--- webkit/database/vfs_backend.h (revision 201604)
+++ webkit/database/vfs_backend.h (working copy)
@@ -1,44 +0,0 @@
-// Copyright (c) 2011 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_DATABASE_VFS_BACKEND_H_
-#define WEBKIT_DATABASE_VFS_BACKEND_H_
-
-#include "base/platform_file.h"
-#include "base/process.h"
-#include "base/string16.h"
-#include "webkit/storage/webkit_storage_export.h"
-
-namespace base {
-class FilePath;
-}
-
-namespace webkit_database {
-
-class WEBKIT_STORAGE_EXPORT VfsBackend {
- public:
- static void OpenFile(const base::FilePath& file_path,
- int desired_flags,
- base::PlatformFile* file_handle);
-
- static void OpenTempFileInDirectory(const base::FilePath& dir_path,
- int desired_flags,
- base::PlatformFile* file_handle);
-
- static int DeleteFile(const base::FilePath& file_path, bool sync_dir);
-
- static uint32 GetFileAttributes(const base::FilePath& file_path);
-
- static int64 GetFileSize(const base::FilePath& file_path);
-
- // Used to make decisions in the DatabaseDispatcherHost.
- static bool OpenTypeIsReadWrite(int desired_flags);
-
- private:
- static bool OpenFileFlagsAreConsistent(int desired_flags);
-};
-
-} // namespace webkit_database
-
-#endif // WEBKIT_DATABASE_VFS_BACKEND_H_
« no previous file with comments | « webkit/database/databases_table_unittest.cc ('k') | webkit/database/vfs_backend.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698