Avi Drissman | e4622aa | 2022-09-08 20:36:06 | [diff] [blame] | 1 | // Copyright 2017 The Chromium Authors |
Scott Graham | f95a78f | 2017-06-09 02:47:40 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Scott Graham | f95a78f | 2017-06-09 02:47:40 | [diff] [blame] | 5 | #include "base/process/process_iterator.h" |
| 6 | |
Lei Zhang | 6f418e0 | 2023-02-08 21:55:43 | [diff] [blame] | 7 | #include "base/notreached.h" |
| 8 | |
Scott Graham | f95a78f | 2017-06-09 02:47:40 | [diff] [blame] | 9 | namespace base { |
| 10 | |
| 11 | ProcessIterator::ProcessIterator(const ProcessFilter* filter) { |
Alison Gale | 81f4f2c7 | 2024-04-22 19:33:31 | [diff] [blame] | 12 | // TODO(crbug.com/40721279): Implement ProcessIterator on Fuchsia. |
Peter Boström | de57333 | 2024-08-26 20:42:45 | [diff] [blame] | 13 | NOTREACHED(); |
Scott Graham | f95a78f | 2017-06-09 02:47:40 | [diff] [blame] | 14 | } |
| 15 | |
Lei Zhang | 6f418e0 | 2023-02-08 21:55:43 | [diff] [blame] | 16 | ProcessIterator::~ProcessIterator() = default; |
Scott Graham | f95a78f | 2017-06-09 02:47:40 | [diff] [blame] | 17 | |
| 18 | bool ProcessIterator::CheckForNextProcess() { |
Scott Graham | f95a78f | 2017-06-09 02:47:40 | [diff] [blame] | 19 | return false; |
| 20 | } |
| 21 | |
| 22 | bool NamedProcessIterator::IncludeEntry() { |
Scott Graham | f95a78f | 2017-06-09 02:47:40 | [diff] [blame] | 23 | return false; |
| 24 | } |
| 25 | |
| 26 | } // namespace base |