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

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

Issue 2580713004: mediaview: Implement ArcDocumentsProviderBackendDelegate. (Closed)
Patch Set: Remove WeakPtrFactory & add TODO for unit tests. Created 3 years, 11 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/chromeos/arc/fileapi/arc_documents_provider_util.h
diff --git a/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_util.h b/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_util.h
index 87d6b9a96c650f522fe2c1c89007e6964e54b94c..38ae3c862f013b4c615109d9af815893af89dd85 100644
--- a/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_util.h
+++ b/chrome/browser/chromeos/arc/fileapi/arc_documents_provider_util.h
@@ -11,6 +11,8 @@
#include "base/files/file_path.h"
+class GURL;
+
namespace storage {
class FileSystemURL;
} // namespace storage
@@ -34,6 +36,10 @@ bool ParseDocumentsProviderUrl(const storage::FileSystemURL& url,
std::string* root_document_id,
base::FilePath* path);
+// C++ implementation of DocumentsContract.buildDocumentUri() in Android.
+GURL BuildDocumentUrl(const std::string& authority,
+ const std::string& document_id);
+
} // namespace arc
#endif // CHROME_BROWSER_CHROMEOS_ARC_FILEAPI_ARC_DOCUMENTS_PROVIDER_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698