chromium/headless/lib/browser/directory_enumerator.cc

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "headless/lib/browser/directory_enumerator.h"

#include <utility>

#include "net/base/net_errors.h"

namespace headless {

// static
void DirectoryEnumerator::Start(
    base::FilePath path,
    scoped_refptr<content::FileSelectListener> listener) {}

DirectoryEnumerator::DirectoryEnumerator(
    base::FilePath directory,
    scoped_refptr<content::FileSelectListener> listener)
    :{}

DirectoryEnumerator::~DirectoryEnumerator() = default;

void DirectoryEnumerator::OnListFile(const DirectoryListerData& data) {}

void DirectoryEnumerator::OnListDone(int error) {}

}  // namespace headless