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

Unified Diff: chrome/browser/chromeos/fileapi/file_access_permissions.h

Issue 17644006: Move files under webkit/browser/fileapi/... to chrome/browser/chromeos/fileapi/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address review comments. Created 7 years, 6 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: chrome/browser/chromeos/fileapi/file_access_permissions.h
diff --git a/webkit/browser/chromeos/fileapi/file_access_permissions.h b/chrome/browser/chromeos/fileapi/file_access_permissions.h
similarity index 79%
rename from webkit/browser/chromeos/fileapi/file_access_permissions.h
rename to chrome/browser/chromeos/fileapi/file_access_permissions.h
index 6af1ddd40ad1c8acdc5bd38a15af95624d71ca88..87826d4d850bcdd03ce13238a9e3af5dc223ff95 100644
--- a/webkit/browser/chromeos/fileapi/file_access_permissions.h
+++ b/chrome/browser/chromeos/fileapi/file_access_permissions.h
@@ -2,20 +2,21 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef WEBKIT_BROWSER_CHROMEOS_FILEAPI_FILE_ACCESS_PERMISSIONS_H_
-#define WEBKIT_BROWSER_CHROMEOS_FILEAPI_FILE_ACCESS_PERMISSIONS_H_
+#ifndef CHROME_BROWSER_CHROMEOS_FILEAPI_FILE_ACCESS_PERMISSIONS_H_
+#define CHROME_BROWSER_CHROMEOS_FILEAPI_FILE_ACCESS_PERMISSIONS_H_
#include <map>
#include <set>
#include <string>
+#include "base/basictypes.h"
#include "base/files/file_path.h"
#include "base/synchronization/lock.h"
#include "webkit/browser/webkit_storage_browser_export.h"
namespace chromeos {
-class WEBKIT_STORAGE_BROWSER_EXPORT FileAccessPermissions {
+class FileAccessPermissions {
public:
FileAccessPermissions();
virtual ~FileAccessPermissions();
@@ -35,8 +36,10 @@ class WEBKIT_STORAGE_BROWSER_EXPORT FileAccessPermissions {
mutable base::Lock lock_; // Synchronize all access to path_map_.
PathAccessMap path_map_;
+
+ DISALLOW_COPY_AND_ASSIGN(FileAccessPermissions);
};
} // namespace chromeos
-#endif // WEBKIT_BROWSER_CHROMEOS_FILEAPI_FILE_ACCESS_PERMISSIONS_H_
+#endif // CHROME_BROWSER_CHROMEOS_FILEAPI_FILE_ACCESS_PERMISSIONS_H_

Powered by Google App Engine
This is Rietveld 408576698