• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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/40721279): 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