| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #include "chrome/browser/media_galleries/fileapi/media_file_system_backend.h" | 5 #include "chrome/browser/media_galleries/fileapi/media_file_system_backend.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 context->default_file_task_runner(), | 361 context->default_file_task_runner(), |
| 362 url.path(), | 362 url.path(), |
| 363 offset, | 363 offset, |
| 364 storage::FileStreamWriter::OPEN_EXISTING_FILE)); | 364 storage::FileStreamWriter::OPEN_EXISTING_FILE)); |
| 365 } | 365 } |
| 366 | 366 |
| 367 storage::FileSystemQuotaUtil* MediaFileSystemBackend::GetQuotaUtil() { | 367 storage::FileSystemQuotaUtil* MediaFileSystemBackend::GetQuotaUtil() { |
| 368 // No quota support. | 368 // No quota support. |
| 369 return NULL; | 369 return NULL; |
| 370 } | 370 } |
| 371 |
| 372 const storage::UpdateObserverList* MediaFileSystemBackend::GetUpdateObservers( |
| 373 storage::FileSystemType type) const { |
| 374 return NULL; |
| 375 } |
| 376 |
| 377 const storage::ChangeObserverList* MediaFileSystemBackend::GetChangeObservers( |
| 378 storage::FileSystemType type) const { |
| 379 return NULL; |
| 380 } |
| 381 |
| 382 const storage::AccessObserverList* MediaFileSystemBackend::GetAccessObservers( |
| 383 storage::FileSystemType type) const { |
| 384 return NULL; |
| 385 } |
| OLD | NEW |