Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(951)

Side by Side Diff: chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.cc

Issue 452043003: [ew] Add basic classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing files. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698