chromium/sandbox/linux/bpf_dsl/test_trap_registry.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "sandbox/linux/bpf_dsl/test_trap_registry.h"

#include <stdint.h>

#include "testing/gtest/include/gtest/gtest.h"

namespace sandbox {
namespace bpf_dsl {

TestTrapRegistry::TestTrapRegistry() = default;

TestTrapRegistry::~TestTrapRegistry() = default;

uint16_t TestTrapRegistry::Add(const Handler& handler) {}

bool TestTrapRegistry::EnableUnsafeTraps() {}

}  // namespace bpf_dsl
}  // namespace sandbox