chromium/third_party/blink/renderer/core/svg/svg_style_element.cc

/*
 * Copyright (C) 2004, 2005 Nikolas Zimmermann <[email protected]>
 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <[email protected]>
 * Copyright (C) 2006 Apple Inc. All rights reserved.
 * Copyright (C) 2009 Cameron McCormack <[email protected]>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; see the file COPYING.LIB.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#include "third_party/blink/renderer/core/svg/svg_style_element.h"

#include "third_party/blink/public/platform/task_type.h"
#include "third_party/blink/renderer/core/css/css_style_sheet.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/events/event.h"
#include "third_party/blink/renderer/core/media_type_names.h"
#include "third_party/blink/renderer/platform/wtf/functional.h"
#include "third_party/blink/renderer/platform/wtf/std_lib_extras.h"

namespace blink {

SVGStyleElement::SVGStyleElement(Document& document,
                                 const CreateElementFlags flags)
    :{}

SVGStyleElement::~SVGStyleElement() = default;

bool SVGStyleElement::disabled() const {}

void SVGStyleElement::setDisabled(bool set_disabled) {}

const AtomicString& SVGStyleElement::type() const {}

void SVGStyleElement::setType(const AtomicString& type) {}

const AtomicString& SVGStyleElement::media() const {}

void SVGStyleElement::setMedia(const AtomicString& media) {}

String SVGStyleElement::title() const {}

void SVGStyleElement::setTitle(const AtomicString& title) {}

void SVGStyleElement::ParseAttribute(
    const AttributeModificationParams& params) {}

void SVGStyleElement::FinishParsingChildren() {}

Node::InsertionNotificationRequest SVGStyleElement::InsertedInto(
    ContainerNode& insertion_point) {}

void SVGStyleElement::RemovedFrom(ContainerNode& insertion_point) {}

void SVGStyleElement::ChildrenChanged(const ChildrenChange& change) {}

void SVGStyleElement::NotifyLoadedSheetAndAllCriticalSubresources(
    LoadedSheetErrorStatus error_status) {}

void SVGStyleElement::DispatchPendingEvent() {}

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

}  // namespace blink