OLD | NEW |
---|---|
(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) {} | |
hashimoto
2016/12/15 03:53:22
= default;
Shuhei Takahashi
2016/12/15 05:21:53
A constructor with arguments can't be defaulted.
| |
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 | |
OLD | NEW |