chromium/third_party/blink/renderer/core/html/html_object_element.cc

/*
 * Copyright (C) 1999 Lars Knoll ([email protected])
 *           (C) 1999 Antti Koivisto ([email protected])
 *           (C) 2000 Stefan Schimanski ([email protected])
 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights
 * reserved.
 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
 *
 * 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/html/html_object_element.h"

#include "third_party/blink/renderer/core/css/style_change_reason.h"
#include "third_party/blink/renderer/core/dom/attribute.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/element_traversal.h"
#include "third_party/blink/renderer/core/dom/shadow_root.h"
#include "third_party/blink/renderer/core/dom/tag_collection.h"
#include "third_party/blink/renderer/core/dom/text.h"
#include "third_party/blink/renderer/core/exported/web_plugin_container_impl.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/html/html_embed_element.h"
#include "third_party/blink/renderer/core/html/html_image_loader.h"
#include "third_party/blink/renderer/core/html/html_meta_element.h"
#include "third_party/blink/renderer/core/html/html_param_element.h"
#include "third_party/blink/renderer/core/html/parser/html_parser_idioms.h"
#include "third_party/blink/renderer/core/html_names.h"
#include "third_party/blink/renderer/core/layout/layout_embedded_object.h"
#include "third_party/blink/renderer/platform/network/mime/mime_type_registry.h"

namespace blink {

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

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

const AttrNameToTrustedType& HTMLObjectElement::GetCheckedAttributeTypes()
    const {}

LayoutEmbeddedContent* HTMLObjectElement::ExistingLayoutEmbeddedContent()
    const {}

bool HTMLObjectElement::IsPresentationAttribute(
    const QualifiedName& name) const {}

void HTMLObjectElement::CollectStyleForPresentationAttribute(
    const QualifiedName& name,
    const AtomicString& value,
    MutableCSSPropertyValueSet* style) {}

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

void HTMLObjectElement::ParametersForPlugin(PluginParameters& plugin_params) {}

bool HTMLObjectElement::HasFallbackContent() const {}

bool HTMLObjectElement::HasValidClassId() const {}

void HTMLObjectElement::ReloadPluginOnAttributeChange(
    const QualifiedName& name) {}

// TODO(crbug.com/572908): This should be unified with
// HTMLEmbedElement::UpdatePlugin and moved down into html_plugin_element.cc
void HTMLObjectElement::UpdatePluginInternal() {}

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

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

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

bool HTMLObjectElement::IsURLAttribute(const Attribute& attribute) const {}

bool HTMLObjectElement::HasLegalLinkAttribute(const QualifiedName& name) const {}

const QualifiedName& HTMLObjectElement::SubResourceAttributeName() const {}

const AtomicString HTMLObjectElement::ImageSourceURL() const {}

void HTMLObjectElement::ReattachFallbackContent() {}

void HTMLObjectElement::RenderFallbackContent(
    ErrorEventPolicy should_dispatch_error_event) {}

bool HTMLObjectElement::IsExposed() const {}

bool HTMLObjectElement::ContainsJavaApplet() const {}

void HTMLObjectElement::DidMoveToNewDocument(Document& old_document) {}

HTMLFormElement* HTMLObjectElement::formOwner() const {}

bool HTMLObjectElement::UseFallbackContent() const {}

bool HTMLObjectElement::WillUseFallbackContentAtLayout() const {}

void HTMLObjectElement::AssociateWith(HTMLFormElement* form) {}

bool HTMLObjectElement::DidFinishLoading() const {}

int HTMLObjectElement::DefaultTabIndex() const {}

const HTMLObjectElement* ToHTMLObjectElementFromListedElement(
    const ListedElement* element) {}

const HTMLObjectElement& ToHTMLObjectElementFromListedElement(
    const ListedElement& element) {}

}  // namespace blink