#include "third_party/blink/renderer/core/svg/graphics/isolated_svg_document_host.h"
#include "base/system/sys_info.h"
#include "base/trace_event/trace_event.h"
#include "services/network/public/cpp/single_request_url_loader_factory.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/common/tokens/tokens.h"
#include "third_party/blink/renderer/core/dom/events/event_dispatch_forbidden_scope.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/frame/local_frame_client.h"
#include "third_party/blink/renderer/core/frame/settings.h"
#include "third_party/blink/renderer/core/layout/layout_object.h"
#include "third_party/blink/renderer/core/page/page.h"
#include "third_party/blink/renderer/core/svg/graphics/svg_image_chrome_client.h"
#include "third_party/blink/renderer/core/svg/svg_svg_element.h"
#include "third_party/blink/renderer/platform/instrumentation/histogram.h"
#include "third_party/blink/renderer/platform/scheduler/public/agent_group_scheduler.h"
#include "third_party/blink/renderer/platform/scheduler/public/main_thread.h"
#include "third_party/blink/renderer/platform/scheduler/public/main_thread_scheduler.h"
namespace blink {
class IsolatedSVGDocumentHost::LocalFrameClient : public EmptyLocalFrameClient { … };
IsolatedSVGDocumentHost::IsolatedSVGDocumentHost(
IsolatedSVGChromeClient& chrome_client,
AgentGroupScheduler& agent_group_scheduler) { … }
void IsolatedSVGDocumentHost::InstallDocument(
scoped_refptr<const SharedBuffer> data,
base::OnceClosure async_load_callback,
const Settings* inherited_settings,
ProcessingMode processing_mode) { … }
void IsolatedSVGDocumentHost::CopySettingsFrom(
Settings& settings,
const Settings& inherited_settings) { … }
LocalFrame* IsolatedSVGDocumentHost::GetFrame() { … }
SVGSVGElement* IsolatedSVGDocumentHost::RootElement() { … }
void IsolatedSVGDocumentHost::LoadCompleted() { … }
void IsolatedSVGDocumentHost::Shutdown() { … }
IsolatedSVGDocumentHost::~IsolatedSVGDocumentHost() { … }
void IsolatedSVGDocumentHost::Trace(Visitor* visitor) const { … }
IsolatedSVGDocumentHostInitializer* IsolatedSVGDocumentHostInitializer::Get() { … }
IsolatedSVGDocumentHostInitializer::IsolatedSVGDocumentHostInitializer()
: … { … }
std::pair<SVGImageChromeClient*, IsolatedSVGDocumentHost*>
IsolatedSVGDocumentHostInitializer::GetOrCreate() { … }
void IsolatedSVGDocumentHostInitializer::MaybePrepareIsolatedSVGDocumentHost() { … }
std::pair<SVGImageChromeClient*, IsolatedSVGDocumentHost*>
IsolatedSVGDocumentHostInitializer::Create() { … }
void IsolatedSVGDocumentHostInitializer::Clear() { … }
void IsolatedSVGDocumentHostInitializer::Trace(Visitor* visitor) const { … }
}