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

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

Issue 2572683004: mediaview: Introduce ArcDocumentsProviderRoot. (Closed)
Patch Set: Constructors are called on the UI thread. 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
18 ArcDocumentsProviderRoot::~ArcDocumentsProviderRoot() {
19 DCHECK_CURRENTLY_ON(BrowserThread::IO);
20 }
21
22 void ArcDocumentsProviderRoot::GetFileInfo(
23 const base::FilePath& path,
24 const GetFileInfoCallback& callback) {
25 DCHECK_CURRENTLY_ON(BrowserThread::IO);
26 NOTIMPLEMENTED(); // TODO(crbug.com/671511): Implement this function.
27 }
28
29 void ArcDocumentsProviderRoot::ReadDirectory(
30 const base::FilePath& path,
31 const ReadDirectoryCallback& callback) {
32 DCHECK_CURRENTLY_ON(BrowserThread::IO);
33 NOTIMPLEMENTED(); // TODO(crbug.com/671511): Implement this function.
34 }
35
36 } // namespace arc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698