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

Side by Side Diff: chrome/browser/media_galleries/fileapi/media_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) 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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698