chromium/content/public/browser/runtime_feature_state/runtime_feature_state_document_data.h

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

#ifndef CONTENT_PUBLIC_BROWSER_RUNTIME_FEATURE_STATE_RUNTIME_FEATURE_STATE_DOCUMENT_DATA_H_
#define CONTENT_PUBLIC_BROWSER_RUNTIME_FEATURE_STATE_RUNTIME_FEATURE_STATE_DOCUMENT_DATA_H_

#include "content/common/content_export.h"
#include "content/public/browser/document_user_data.h"
#include "third_party/blink/public/common/runtime_feature_state/runtime_feature_state_read_context.h"

namespace content {

class CONTENT_EXPORT RuntimeFeatureStateDocumentData
    : public DocumentUserData<RuntimeFeatureStateDocumentData> {};

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_RUNTIME_FEATURE_STATE_RUNTIME_FEATURE_STATE_DOCUMENT_DATA_H_