chromium/third_party/blink/renderer/core/css/font_face_set_worker.cc

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

#include "third_party/blink/renderer/core/css/font_face_set_worker.h"

#include "third_party/blink/renderer/bindings/core/v8/dictionary.h"
#include "third_party/blink/renderer/bindings/core/v8/script_promise_resolver.h"
#include "third_party/blink/renderer/core/css/css_property_value_set.h"
#include "third_party/blink/renderer/core/css/css_segmented_font_face.h"
#include "third_party/blink/renderer/core/css/font_face_cache.h"
#include "third_party/blink/renderer/core/css/font_face_set_load_event.h"
#include "third_party/blink/renderer/core/css/offscreen_font_selector.h"
#include "third_party/blink/renderer/core/css/parser/css_parser.h"
#include "third_party/blink/renderer/core/css/properties/css_parsing_utils.h"
#include "third_party/blink/renderer/core/css/resolver/font_style_resolver.h"
#include "third_party/blink/renderer/core/css/resolver/style_resolver.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/frame/local_frame_view.h"
#include "third_party/blink/renderer/core/style/computed_style.h"
#include "third_party/blink/renderer/platform/bindings/script_state.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"

namespace blink {

// static
const char FontFaceSetWorker::kSupplementName[] =;

FontFaceSetWorker::FontFaceSetWorker(WorkerGlobalScope& worker)
    :{}

FontFaceSetWorker::~FontFaceSetWorker() = default;

WorkerGlobalScope* FontFaceSetWorker::GetWorker() const {}

AtomicString FontFaceSetWorker::status() const {}

void FontFaceSetWorker::BeginFontLoading(FontFace* font_face) {}

void FontFaceSetWorker::NotifyLoaded(FontFace* font_face) {}

void FontFaceSetWorker::NotifyError(FontFace* font_face) {}

ScriptPromise<FontFaceSet> FontFaceSetWorker::ready(ScriptState* script_state) {}

void FontFaceSetWorker::FireDoneEventIfPossible() {}

bool FontFaceSetWorker::ResolveFontStyle(const String& font_string,
                                         Font& font) {}

FontFaceSetWorker* FontFaceSetWorker::From(WorkerGlobalScope& worker) {}

void FontFaceSetWorker::Trace(Visitor* visitor) const {}

}  // namespace blink