blob: 84cae256f65441dc0ee74b47db925c346bee2521 [file] [log] [blame]
// Copyright 2021 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/clip_path_paint_image_generator.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
namespace blink {
namespace {
ClipPathPaintImageGenerator::ClipPathPaintImageGeneratorCreateFunction*
g_create_function = nullptr;
} // namespace
// static
void ClipPathPaintImageGenerator::Init(
ClipPathPaintImageGeneratorCreateFunction* create_function) {
DCHECK(!g_create_function);
g_create_function = create_function;
}
ClipPathPaintImageGenerator* ClipPathPaintImageGenerator::Create(
LocalFrame& local_root) {
DCHECK(g_create_function);
DCHECK(local_root.IsLocalRoot());
return g_create_function(local_root);
}
} // namespace blink