blob: 4e8cc0cd47cd9d030ace97c3abddf0d56a075ff8 [file]
// Copyright 2021 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef RUNTIME_PROBE_SYSTEM_CONTEXT_FACTORY_IMPL_H_
#define RUNTIME_PROBE_SYSTEM_CONTEXT_FACTORY_IMPL_H_
#include "runtime_probe/system/context_impl.h"
namespace runtime_probe {
class ContextFactoryImpl : public ContextImpl {
public:
ContextFactoryImpl();
~ContextFactoryImpl() override = default;
bool factory_mode() override { return true; }
};
} // namespace runtime_probe
#endif // RUNTIME_PROBE_SYSTEM_CONTEXT_FACTORY_IMPL_H_