OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/chromeos/drive/fileapi/file_system_backend_delegate.h" | 5 #include "chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "chrome/browser/chromeos/drive/file_system_util.h" | 10 #include "chrome/browser/chromeos/drive/file_system_util.h" |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 return scoped_ptr<storage::FileStreamWriter>(); | 73 return scoped_ptr<storage::FileStreamWriter>(); |
74 | 74 |
75 return scoped_ptr<storage::FileStreamWriter>( | 75 return scoped_ptr<storage::FileStreamWriter>( |
76 new internal::WebkitFileStreamWriterImpl( | 76 new internal::WebkitFileStreamWriterImpl( |
77 base::Bind(&fileapi_internal::GetFileSystemFromUrl, url), | 77 base::Bind(&fileapi_internal::GetFileSystemFromUrl, url), |
78 context->default_file_task_runner(), | 78 context->default_file_task_runner(), |
79 file_path, | 79 file_path, |
80 offset)); | 80 offset)); |
81 } | 81 } |
82 | 82 |
| 83 storage::WatcherManager* FileSystemBackendDelegate::GetWatcherManager( |
| 84 const storage::FileSystemURL& url) { |
| 85 NOTIMPLEMENTED(); |
| 86 return NULL; |
| 87 } |
| 88 |
83 } // namespace drive | 89 } // namespace drive |
OLD | NEW |