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

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLFormControlElementWithState.h

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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
6 * reserved. 6 * reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 Document&, 51 Document&,
52 HTMLFormElement*); 52 HTMLFormElement*);
53 53
54 void finishParsingChildren() override; 54 void finishParsingChildren() override;
55 InsertionNotificationRequest insertedInto(ContainerNode*) override; 55 InsertionNotificationRequest insertedInto(ContainerNode*) override;
56 void removedFrom(ContainerNode*) override; 56 void removedFrom(ContainerNode*) override;
57 bool isFormControlElementWithState() const final; 57 bool isFormControlElementWithState() const final;
58 }; 58 };
59 59
60 DEFINE_TYPE_CASTS(HTMLFormControlElementWithState, 60 DEFINE_TYPE_CASTS(HTMLFormControlElementWithState,
61 FormAssociatedElement, 61 ListedElement,
62 control, 62 control,
63 control->isFormControlElementWithState(), 63 control->isFormControlElementWithState(),
64 control.isFormControlElementWithState()); 64 control.isFormControlElementWithState());
65 65
66 } // namespace blink 66 } // namespace blink
67 67
68 #endif 68 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698