blob: e97bb4accdd09debcf1bae4215e9e14f4f3e9f07 [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef EXTENSIONS_TEST_TEST_CONTEXT_DATA_H_
#define EXTENSIONS_TEST_TEST_CONTEXT_DATA_H_
#include "extensions/common/context_data.h"
namespace extensions {
class TestContextData : public ContextData {
public:
TestContextData() = default;
~TestContextData() override = default;
bool HasControlledFrameCapability() const override;
};
} // namespace extensions
#endif // EXTENSIONS_TEST_TEST_CONTEXT_DATA_H_