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

Unified Diff: webkit/chromeos/fileapi/file_access_permissions.h

Issue 16010006: Move webkit/chromeos into webkit/browser/chromeos (Closed) Base URL: svn://svn.chromium.org/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
Index: webkit/chromeos/fileapi/file_access_permissions.h
diff --git a/webkit/chromeos/fileapi/file_access_permissions.h b/webkit/chromeos/fileapi/file_access_permissions.h
deleted file mode 100644
index a1950b1d182c9fa9a9bc29b9ace688dd578d607f..0000000000000000000000000000000000000000
--- a/webkit/chromeos/fileapi/file_access_permissions.h
+++ /dev/null
@@ -1,42 +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_CHROMEOS_FILEAPI_FILE_ACCESS_PERMISSIONS_H_
-#define WEBKIT_CHROMEOS_FILEAPI_FILE_ACCESS_PERMISSIONS_H_
-
-#include <map>
-#include <set>
-#include <string>
-
-#include "base/files/file_path.h"
-#include "base/synchronization/lock.h"
-#include "webkit/storage/webkit_storage_export.h"
-
-namespace chromeos {
-
-class WEBKIT_STORAGE_EXPORT FileAccessPermissions {
- public:
- FileAccessPermissions();
- virtual ~FileAccessPermissions();
-
- // Grants |extension_id| access to |path|.
- void GrantAccessPermission(const std::string& extension_id,
- const base::FilePath& path);
- // Checks id |extension_id| has permission to access to |path|.
- bool HasAccessPermission(const std::string& extension_id,
- const base::FilePath& path) const;
- // Revokes all file permissions for |extension_id|.
- void RevokePermissions(const std::string& extension_id);
-
- private:
- typedef std::set<base::FilePath> PathSet;
- typedef std::map<std::string, PathSet> PathAccessMap;
-
- mutable base::Lock lock_; // Synchronize all access to path_map_.
- PathAccessMap path_map_;
-};
-
-} // namespace chromeos
-
-#endif // WEBKIT_CHROMEOS_FILEAPI_FILE_ACCESS_PERMISSIONS_H_
« no previous file with comments | « webkit/chromeos/fileapi/cros_mount_point_provider_unittest.cc ('k') | webkit/chromeos/fileapi/file_access_permissions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698