#include "third_party/blink/public/platform/web_common.h"
#include "third_party/blink/public/platform/web_security_origin.h"
#include "third_party/blink/public/platform/web_string.h"
#include "v8/include/v8-forward.h"
#ifndef THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_ISOLATED_WORLD_INFO_H_
#define THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_ISOLATED_WORLD_INFO_H_
namespace blink {
struct WebIsolatedWorldInfo { … };
static constexpr int32_t kMainDOMWorldId = …;
BLINK_EXPORT void SetIsolatedWorldInfo(int32_t world_id,
const WebIsolatedWorldInfo& info);
BLINK_EXPORT bool IsEqualOrExceedEmbedderWorldIdLimit(int32_t world_id);
BLINK_EXPORT WebString GetIsolatedWorldStableId(v8::Local<v8::Context>);
BLINK_EXPORT WebString
GetIsolatedWorldHumanReadableName(v8::Local<v8::Context>);
}
#endif