[M120 Migration][VD] Enable direct rendering for TVPlus
[platform/framework/web/chromium-efl.git] / components / fuchsia_component_support / inspect.h
1 // Copyright 2020 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 #ifndef COMPONENTS_FUCHSIA_COMPONENT_SUPPORT_INSPECT_H_
6 #define COMPONENTS_FUCHSIA_COMPONENT_SUPPORT_INSPECT_H_
7
8 namespace sys {
9 class ComponentInspector;
10 }  // namespace sys
11
12 namespace fuchsia_component_support {
13
14 // Publish the Chromium version via the Inspect API. The lifetime of
15 // |inspector| has to be the same as the component it belongs to.
16 void PublishVersionInfoToInspect(sys::ComponentInspector* inspector);
17
18 }  // namespace fuchsia_component_support
19
20 #endif  // COMPONENTS_FUCHSIA_COMPONENT_SUPPORT_INSPECT_H_