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 #include "storage/browser/fileapi/isolated_file_system_backend.h" | 5 #include "storage/browser/fileapi/isolated_file_system_backend.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 url.path(), | 142 url.path(), |
143 offset, | 143 offset, |
144 FileStreamWriter::OPEN_EXISTING_FILE)); | 144 FileStreamWriter::OPEN_EXISTING_FILE)); |
145 } | 145 } |
146 | 146 |
147 FileSystemQuotaUtil* IsolatedFileSystemBackend::GetQuotaUtil() { | 147 FileSystemQuotaUtil* IsolatedFileSystemBackend::GetQuotaUtil() { |
148 // No quota support. | 148 // No quota support. |
149 return NULL; | 149 return NULL; |
150 } | 150 } |
151 | 151 |
| 152 const UpdateObserverList* IsolatedFileSystemBackend::GetUpdateObservers( |
| 153 FileSystemType type) const { |
| 154 return NULL; |
| 155 } |
| 156 |
| 157 const ChangeObserverList* IsolatedFileSystemBackend::GetChangeObservers( |
| 158 FileSystemType type) const { |
| 159 return NULL; |
| 160 } |
| 161 |
| 162 const AccessObserverList* IsolatedFileSystemBackend::GetAccessObservers( |
| 163 FileSystemType type) const { |
| 164 return NULL; |
| 165 } |
| 166 |
152 } // namespace storage | 167 } // namespace storage |
OLD | NEW |