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

Unified Diff: chrome/browser/chromeos/arc/fileapi/arc_documents_provider_root.h

Issue 2574173002: mediaview: Implement ArcDocumentsProviderRoot. (Closed)
Patch Set: Address lhchavez's comments. Created 4 years 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/chromeos/arc/fileapi/arc_documents_provider_root.h
diff --git a/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_root.h b/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_root.h
index 41135c9e0c255c8eef3c49e1278c1ad11362bc45..2f83989eb1dd8308f053780fe852e3c700c359b3 100644
--- a/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_root.h
+++ b/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_root.h
@@ -5,14 +5,21 @@
#ifndef CHROME_BROWSER_CHROMEOS_ARC_FILEAPI_ARC_DOCUMENTS_PROVIDER_ROOT_H_
#define CHROME_BROWSER_CHROMEOS_ARC_FILEAPI_ARC_DOCUMENTS_PROVIDER_ROOT_H_
+#include <memory>
#include <string>
+#include <vector>
#include "base/files/file_path.h"
#include "base/macros.h"
+#include "base/memory/weak_ptr.h"
+#include "base/optional.h"
+#include "components/arc/common/file_system.mojom.h"
#include "storage/browser/fileapi/async_file_util.h"
namespace arc {
+class ArcDocumentsProviderDocument;
+
// Represents a file system root in Android Documents Provider.
//
// All methods must be called on the IO thread.
@@ -35,6 +42,33 @@ class ArcDocumentsProviderRoot {
const ReadDirectoryCallback& callback);
private:
+ void GetFileInfoAfterCacheUpdate(const base::FilePath& path,
+ const GetFileInfoCallback& callback);
+ void GetFileInfoWithDocument(const GetFileInfoCallback& callback,
+ mojom::DocumentPtr document);
+
+ void ReadDirectoryAfterCacheUpdate(const base::FilePath& path,
+ const ReadDirectoryCallback& callback);
+ void ReadDirectoryWithChildDocuments(
+ const base::FilePath& path,
+ const ReadDirectoryCallback& callback,
+ base::Optional<std::vector<mojom::DocumentPtr>> children);
+
+ void UpdateDirectoryCacheUpTo(const base::FilePath& path,
+ const base::Closure& callback);
+ void UpdateDirectoryCacheIter(const base::FilePath& parent_directory_path,
+ const base::FilePath& remaining_path,
+ const base::Closure& callback);
+ void UpdateDirectoryCacheIterWithChildDocuments(
+ const base::FilePath& parent_directory_path,
+ const base::FilePath& remaining_path,
+ const base::Closure& callback,
+ base::Optional<std::vector<mojom::DocumentPtr>> children);
+
+ const std::string authority_;
+ const std::unique_ptr<ArcDocumentsProviderDocument> root_directory_;
+ base::WeakPtrFactory<ArcDocumentsProviderRoot> weak_ptr_factory_;
+
DISALLOW_COPY_AND_ASSIGN(ArcDocumentsProviderRoot);
};

Powered by Google App Engine
This is Rietveld 408576698