| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_FILE_SYSTEM_QUOTA_UTIL_H_ | 5 #ifndef STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_QUOTA_UTIL_H_ |
| 6 #define WEBKIT_BROWSER_FILEAPI_FILE_SYSTEM_QUOTA_UTIL_H_ | 6 #define STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_QUOTA_UTIL_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/files/file.h" | 12 #include "base/files/file.h" |
| 13 #include "storage/browser/fileapi/task_runner_bound_observer_list.h" |
| 14 #include "storage/browser/storage_browser_export.h" |
| 15 #include "storage/common/fileapi/file_system_types.h" |
| 13 #include "url/gurl.h" | 16 #include "url/gurl.h" |
| 14 #include "webkit/browser/fileapi/task_runner_bound_observer_list.h" | |
| 15 #include "webkit/browser/storage_browser_export.h" | |
| 16 #include "webkit/common/fileapi/file_system_types.h" | |
| 17 | 17 |
| 18 namespace base { | 18 namespace base { |
| 19 class SequencedTaskRunner; | 19 class SequencedTaskRunner; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace storage { | 22 namespace storage { |
| 23 class QuotaManagerProxy; | 23 class QuotaManagerProxy; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace storage { | 26 namespace storage { |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 virtual const UpdateObserverList* GetUpdateObservers( | 81 virtual const UpdateObserverList* GetUpdateObservers( |
| 82 FileSystemType type) const = 0; | 82 FileSystemType type) const = 0; |
| 83 virtual const ChangeObserverList* GetChangeObservers( | 83 virtual const ChangeObserverList* GetChangeObservers( |
| 84 FileSystemType type) const = 0; | 84 FileSystemType type) const = 0; |
| 85 virtual const AccessObserverList* GetAccessObservers( | 85 virtual const AccessObserverList* GetAccessObservers( |
| 86 FileSystemType type) const = 0; | 86 FileSystemType type) const = 0; |
| 87 }; | 87 }; |
| 88 | 88 |
| 89 } // namespace storage | 89 } // namespace storage |
| 90 | 90 |
| 91 #endif // WEBKIT_BROWSER_FILEAPI_FILE_SYSTEM_QUOTA_UTIL_H_ | 91 #endif // STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_QUOTA_UTIL_H_ |
| OLD | NEW |