| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_BROWSER_FILEAPI_PLUGIN_PRIVATE_FILE_SYSTEM_BACKEND_H_ | 5 #ifndef STORAGE_BROWSER_FILEAPI_PLUGIN_PRIVATE_FILE_SYSTEM_BACKEND_H_ |
| 6 #define WEBKIT_BROWSER_FILEAPI_PLUGIN_PRIVATE_FILE_SYSTEM_BACKEND_H_ | 6 #define STORAGE_BROWSER_FILEAPI_PLUGIN_PRIVATE_FILE_SYSTEM_BACKEND_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "webkit/browser/fileapi/file_system_backend.h" | 13 #include "storage/browser/fileapi/file_system_backend.h" |
| 14 #include "webkit/browser/fileapi/file_system_options.h" | 14 #include "storage/browser/fileapi/file_system_options.h" |
| 15 #include "webkit/browser/fileapi/file_system_quota_util.h" | 15 #include "storage/browser/fileapi/file_system_quota_util.h" |
| 16 | 16 |
| 17 namespace base { | 17 namespace base { |
| 18 class SequencedTaskRunner; | 18 class SequencedTaskRunner; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace content { | 21 namespace content { |
| 22 class PluginPrivateFileSystemBackendTest; | 22 class PluginPrivateFileSystemBackendTest; |
| 23 } | 23 } |
| 24 | 24 |
| 25 namespace storage { | 25 namespace storage { |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 const base::FilePath base_path_; | 139 const base::FilePath base_path_; |
| 140 scoped_ptr<AsyncFileUtil> file_util_; | 140 scoped_ptr<AsyncFileUtil> file_util_; |
| 141 FileSystemIDToPluginMap* plugin_map_; // Owned by file_util_. | 141 FileSystemIDToPluginMap* plugin_map_; // Owned by file_util_. |
| 142 base::WeakPtrFactory<PluginPrivateFileSystemBackend> weak_factory_; | 142 base::WeakPtrFactory<PluginPrivateFileSystemBackend> weak_factory_; |
| 143 | 143 |
| 144 DISALLOW_COPY_AND_ASSIGN(PluginPrivateFileSystemBackend); | 144 DISALLOW_COPY_AND_ASSIGN(PluginPrivateFileSystemBackend); |
| 145 }; | 145 }; |
| 146 | 146 |
| 147 } // namespace storage | 147 } // namespace storage |
| 148 | 148 |
| 149 #endif // WEBKIT_BROWSER_FILEAPI_PLUGIN_PRIVATE_FILE_SYSTEM_BACKEND_H_ | 149 #endif // STORAGE_BROWSER_FILEAPI_PLUGIN_PRIVATE_FILE_SYSTEM_BACKEND_H_ |
| OLD | NEW |