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 STORAGE_BROWSER_FILEAPI_SANDBOX_FILE_SYSTEM_BACKEND_DELEGATE_H_ | 5 #ifndef STORAGE_BROWSER_FILEAPI_SANDBOX_FILE_SYSTEM_BACKEND_DELEGATE_H_ |
6 #define STORAGE_BROWSER_FILEAPI_SANDBOX_FILE_SYSTEM_BACKEND_DELEGATE_H_ | 6 #define STORAGE_BROWSER_FILEAPI_SANDBOX_FILE_SYSTEM_BACKEND_DELEGATE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 #include <utility> | 11 #include <utility> |
12 | 12 |
13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
14 #include "base/gtest_prod_util.h" | |
15 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
16 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
17 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
18 #include "base/threading/thread_checker.h" | 17 #include "base/threading/thread_checker.h" |
19 #include "base/time/time.h" | 18 #include "base/time/time.h" |
20 #include "storage/browser/fileapi/file_system_backend.h" | 19 #include "storage/browser/fileapi/file_system_backend.h" |
21 #include "storage/browser/fileapi/file_system_options.h" | 20 #include "storage/browser/fileapi/file_system_options.h" |
22 #include "storage/browser/fileapi/file_system_quota_util.h" | 21 #include "storage/browser/fileapi/file_system_quota_util.h" |
23 #include "storage/browser/fileapi/task_runner_bound_observer_list.h" | 22 #include "storage/browser/fileapi/task_runner_bound_observer_list.h" |
24 #include "storage/browser/storage_browser_export.h" | 23 #include "storage/browser/storage_browser_export.h" |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 base::Time next_release_time_for_open_filesystem_stat_; | 255 base::Time next_release_time_for_open_filesystem_stat_; |
257 | 256 |
258 base::WeakPtrFactory<SandboxFileSystemBackendDelegate> weak_factory_; | 257 base::WeakPtrFactory<SandboxFileSystemBackendDelegate> weak_factory_; |
259 | 258 |
260 DISALLOW_COPY_AND_ASSIGN(SandboxFileSystemBackendDelegate); | 259 DISALLOW_COPY_AND_ASSIGN(SandboxFileSystemBackendDelegate); |
261 }; | 260 }; |
262 | 261 |
263 } // namespace storage | 262 } // namespace storage |
264 | 263 |
265 #endif // STORAGE_BROWSER_FILEAPI_SANDBOX_FILE_SYSTEM_BACKEND_DELEGATE_H_ | 264 #endif // STORAGE_BROWSER_FILEAPI_SANDBOX_FILE_SYSTEM_BACKEND_DELEGATE_H_ |
OLD | NEW |