xref: /aosp_15_r20/external/cronet/base/process/process_iterator_fuchsia.cc (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 // Copyright 2017 The Chromium Authors
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 "base/process/process_iterator.h"
6 
7 #include "base/notreached.h"
8 
9 namespace base {
10 
ProcessIterator(const ProcessFilter * filter)11 ProcessIterator::ProcessIterator(const ProcessFilter* filter) {
12   // TODO(crbug.com/1131239): Implement ProcessIterator on Fuchsia.
13   NOTREACHED();
14 }
15 
16 ProcessIterator::~ProcessIterator() = default;
17 
CheckForNextProcess()18 bool ProcessIterator::CheckForNextProcess() {
19   return false;
20 }
21 
IncludeEntry()22 bool NamedProcessIterator::IncludeEntry() {
23   return false;
24 }
25 
26 }  // namespace base
27