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

Unified Diff: third_party/WebKit/Source/web/WebFormElement.cpp

Issue 1954823002: Remove WebFormElement::getNamedElements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months 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
« no previous file with comments | « no previous file | third_party/WebKit/public/web/WebFormElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebFormElement.cpp
diff --git a/third_party/WebKit/Source/web/WebFormElement.cpp b/third_party/WebKit/Source/web/WebFormElement.cpp
index 31c2ef4e20bd2271a44a5bfd1b420fd96adfbc23..a56c9ed3addf213d7aba5c9563b1a5b3caf069a9 100644
--- a/third_party/WebKit/Source/web/WebFormElement.cpp
+++ b/third_party/WebKit/Source/web/WebFormElement.cpp
@@ -62,14 +62,6 @@ WebString WebFormElement::method() const
return constUnwrap<HTMLFormElement>()->method();
}
-void WebFormElement::getNamedElements(const WebString& name,
- WebVector<WebNode>& result)
-{
- HeapVector<Member<Element>> tempVector;
- unwrap<HTMLFormElement>()->getNamedElements(name, tempVector);
- result.assign(tempVector);
-}
-
void WebFormElement::getFormControlElements(WebVector<WebFormControlElement>& result) const
{
const HTMLFormElement* form = constUnwrap<HTMLFormElement>();
« no previous file with comments | « no previous file | third_party/WebKit/public/web/WebFormElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698