| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WEBKIT_CHROMEOS_FILEAPI_FILE_ACCESS_PERMISSIONS_H_ | 5 #ifndef WEBKIT_BROWSER_CHROMEOS_FILEAPI_FILE_ACCESS_PERMISSIONS_H_ |
| 6 #define WEBKIT_CHROMEOS_FILEAPI_FILE_ACCESS_PERMISSIONS_H_ | 6 #define WEBKIT_BROWSER_CHROMEOS_FILEAPI_FILE_ACCESS_PERMISSIONS_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "base/synchronization/lock.h" | 13 #include "base/synchronization/lock.h" |
| 14 #include "webkit/storage/webkit_storage_export.h" | 14 #include "webkit/storage/webkit_storage_export.h" |
| 15 | 15 |
| 16 namespace chromeos { | 16 namespace chromeos { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 32 private: | 32 private: |
| 33 typedef std::set<base::FilePath> PathSet; | 33 typedef std::set<base::FilePath> PathSet; |
| 34 typedef std::map<std::string, PathSet> PathAccessMap; | 34 typedef std::map<std::string, PathSet> PathAccessMap; |
| 35 | 35 |
| 36 mutable base::Lock lock_; // Synchronize all access to path_map_. | 36 mutable base::Lock lock_; // Synchronize all access to path_map_. |
| 37 PathAccessMap path_map_; | 37 PathAccessMap path_map_; |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 } // namespace chromeos | 40 } // namespace chromeos |
| 41 | 41 |
| 42 #endif // WEBKIT_CHROMEOS_FILEAPI_FILE_ACCESS_PERMISSIONS_H_ | 42 #endif // WEBKIT_BROWSER_CHROMEOS_FILEAPI_FILE_ACCESS_PERMISSIONS_H_ |
| OLD | NEW |