process_context.h 554 B

123456789101112131415161718192021
  1. // Copyright 2020 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef BASE_FUCHSIA_PROCESS_CONTEXT_H_
  5. #define BASE_FUCHSIA_PROCESS_CONTEXT_H_
  6. #include "base/base_export.h"
  7. namespace sys {
  8. class ComponentInspector;
  9. } // namespace sys
  10. namespace base {
  11. // Returns sys::ComponentInspector for the current process.
  12. BASE_EXPORT sys::ComponentInspector* ComponentInspectorForProcess();
  13. } // namespace base
  14. #endif // BASE_FUCHSIA_PROCESS_CONTEXT_H_