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

Unified Diff: webkit/browser/database/vfs_backend.h

Issue 539143002: Migrate webkit/browser/ to storage/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
Index: webkit/browser/database/vfs_backend.h
diff --git a/webkit/browser/database/vfs_backend.h b/webkit/browser/database/vfs_backend.h
index 3de637184aae3552f1d30778fcdbcdc00699d6d4..3904e150fdc4a36444d0aee52087c9ba39498270 100644
--- a/webkit/browser/database/vfs_backend.h
+++ b/webkit/browser/database/vfs_backend.h
@@ -1,42 +1,5 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright 2014 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_DATABASE_VFS_BACKEND_H_
-#define WEBKIT_BROWSER_DATABASE_VFS_BACKEND_H_
-
-#include "base/files/file.h"
-#include "base/process/process.h"
-#include "base/strings/string16.h"
-#include "webkit/browser/storage_browser_export.h"
-
-namespace base {
-class FilePath;
-}
-
-namespace storage {
-
-class STORAGE_EXPORT VfsBackend {
- public:
- static base::File OpenFile(const base::FilePath& file_path,
- int desired_flags);
-
- static base::File OpenTempFileInDirectory(const base::FilePath& dir_path,
- int desired_flags);
-
- 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 storage
-
-#endif // WEBKIT_BROWSER_DATABASE_VFS_BACKEND_H_
+#include "storage/browser/database/vfs_backend.h"

Powered by Google App Engine
This is Rietveld 408576698