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

Unified Diff: chrome/browser/local_discovery/storage/privet_filesystem_backend.cc

Issue 141703022: Support for file listing in privet local filesystem (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/local_discovery/storage/privet_filesystem_backend.cc
diff --git a/chrome/browser/local_discovery/storage/privet_filesystem_backend.cc b/chrome/browser/local_discovery/storage/privet_filesystem_backend.cc
index 390518ff4e9568f70a7a2732bd0152d3e4f42c7f..20e4810090d98acce7bdc97f1a0e56547e47ec8c 100644
--- a/chrome/browser/local_discovery/storage/privet_filesystem_backend.cc
+++ b/chrome/browser/local_discovery/storage/privet_filesystem_backend.cc
@@ -13,9 +13,10 @@
namespace local_discovery {
PrivetFileSystemBackend::PrivetFileSystemBackend(
- fileapi::ExternalMountPoints* mount_points)
+ fileapi::ExternalMountPoints* mount_points,
+ content::BrowserContext* browser_context)
: mount_points_(mount_points),
- async_util_(new PrivetFileSystemAsyncUtil()) {
+ async_util_(new PrivetFileSystemAsyncUtil(browser_context)) {
}
PrivetFileSystemBackend::~PrivetFileSystemBackend() {

Powered by Google App Engine
This is Rietveld 408576698