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

Side by Side Diff: chrome/browser/chromeos/arc/fileapi/arc_documents_provider_root.cc

Issue 2572683004: mediaview: Introduce ArcDocumentsProviderRoot. (Closed)
Patch Set: Addressed 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/chromeos/arc/fileapi/arc_documents_provider_root.h"
6
7 #include "base/logging.h"
8 #include "content/public/browser/browser_thread.h"
9
10 using content::BrowserThread;
11
12 namespace arc {
13
14 ArcDocumentsProviderRoot::ArcDocumentsProviderRoot(
15 const std::string& authority,
16 const std::string& root_document_id) {
17 DCHECK_CURRENTLY_ON(BrowserThread::IO);
18 }
19
20 ArcDocumentsProviderRoot::~ArcDocumentsProviderRoot() {
21 DCHECK_CURRENTLY_ON(BrowserThread::IO);
22 }
23
24 void ArcDocumentsProviderRoot::GetFileInfo(
25 const base::FilePath& path,
26 const GetFileInfoCallback& callback) {
27 DCHECK_CURRENTLY_ON(BrowserThread::IO);
28 NOTIMPLEMENTED(); // TODO(crbug.com/671511): Implement this function.
29 }
30
31 void ArcDocumentsProviderRoot::ReadDirectory(
32 const base::FilePath& path,
33 const ReadDirectoryCallback& callback) {
34 DCHECK_CURRENTLY_ON(BrowserThread::IO);
35 NOTIMPLEMENTED(); // TODO(crbug.com/671511): Implement this function.
36 }
37
38 } // namespace arc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698