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

Side by Side Diff: storage/browser/fileapi/isolated_file_system_backend.cc

Issue 549413003: [ew] Move operation observers from QuotaUtil to FileSystemBackend. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 6 years, 3 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
OLDNEW
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
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
OLDNEW
« no previous file with comments | « storage/browser/fileapi/isolated_file_system_backend.h ('k') | storage/browser/fileapi/plugin_private_file_system_backend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698