blob: 2395233451ddf1646b94bfb30da46726313e2725 [file] [log] [blame]
Avi Drissmane4622aa2022-09-08 20:36:061// Copyright 2017 The Chromium Authors
Scott Grahamf95a78f2017-06-09 02:47:402// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Scott Grahamf95a78f2017-06-09 02:47:405#include "base/process/process_iterator.h"
6
Lei Zhang6f418e02023-02-08 21:55:437#include "base/notreached.h"
8
Scott Grahamf95a78f2017-06-09 02:47:409namespace base {
10
11ProcessIterator::ProcessIterator(const ProcessFilter* filter) {
Alison Gale81f4f2c72024-04-22 19:33:3112 // TODO(crbug.com/40721279): Implement ProcessIterator on Fuchsia.
Peter Boströmde573332024-08-26 20:42:4513 NOTREACHED();
Scott Grahamf95a78f2017-06-09 02:47:4014}
15
Lei Zhang6f418e02023-02-08 21:55:4316ProcessIterator::~ProcessIterator() = default;
Scott Grahamf95a78f2017-06-09 02:47:4017
18bool ProcessIterator::CheckForNextProcess() {
Scott Grahamf95a78f2017-06-09 02:47:4019 return false;
20}
21
22bool NamedProcessIterator::IncludeEntry() {
Scott Grahamf95a78f2017-06-09 02:47:4023 return false;
24}
25
26} // namespace base