Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(336)

Unified Diff: third_party/WebKit/Source/core/html/HTMLObjectElement.cpp

Issue 2546063002: Rename FormAssociatedElement to ListedElement (Closed)
Patch Set: Rename FormAssociatedElement to ListedElement Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLObjectElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp b/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp
index 7f450ff1f60bb6e50fddb5f33ba70f3828ea6db0..5e10a70ab82868902fdd8c7611c748fcec096bc0 100644
--- a/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp
@@ -72,7 +72,7 @@ HTMLObjectElement* HTMLObjectElement::create(Document& document,
}
DEFINE_TRACE(HTMLObjectElement) {
- FormAssociatedElement::trace(visitor);
+ ListedElement::trace(visitor);
HTMLPlugInElement::trace(visitor);
}
@@ -336,13 +336,13 @@ void HTMLObjectElement::updateWidgetInternal() {
Node::InsertionNotificationRequest HTMLObjectElement::insertedInto(
ContainerNode* insertionPoint) {
HTMLPlugInElement::insertedInto(insertionPoint);
- FormAssociatedElement::insertedInto(insertionPoint);
+ ListedElement::insertedInto(insertionPoint);
return InsertionDone;
}
void HTMLObjectElement::removedFrom(ContainerNode* insertionPoint) {
HTMLPlugInElement::removedFrom(insertionPoint);
- FormAssociatedElement::removedFrom(insertionPoint);
+ ListedElement::removedFrom(insertionPoint);
}
void HTMLObjectElement::childrenChanged(const ChildrenChange& change) {
@@ -445,12 +445,12 @@ bool HTMLObjectElement::containsJavaApplet() const {
}
void HTMLObjectElement::didMoveToNewDocument(Document& oldDocument) {
- FormAssociatedElement::didMoveToNewDocument(oldDocument);
+ ListedElement::didMoveToNewDocument(oldDocument);
HTMLPlugInElement::didMoveToNewDocument(oldDocument);
}
HTMLFormElement* HTMLObjectElement::formOwner() const {
- return FormAssociatedElement::form();
+ return ListedElement::form();
}
bool HTMLObjectElement::isInteractiveContent() const {

Powered by Google App Engine
This is Rietveld 408576698