chromium/extensions/renderer/renderer_frame_context_data.h

// 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_RENDERER_RENDERER_FRAME_CONTEXT_DATA_H_
#define EXTENSIONS_RENDERER_RENDERER_FRAME_CONTEXT_DATA_H_

#include <stdint.h>
#include <memory>

#include "base/memory/raw_ptr.h"
#include "extensions/common/frame_context_data.h"
#include "third_party/blink/public/web/web_local_frame.h"

class GURL;

namespace url {
class Origin;
}  // namespace url

namespace extensions {

class RendererFrameContextData : public FrameContextData {};

}  // namespace extensions

#endif  // EXTENSIONS_RENDERER_RENDERER_FRAME_CONTEXT_DATA_H_