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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 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 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 19 matching lines...) Expand all
30 namespace blink { 30 namespace blink {
31 31
32 class ExceptionState; 32 class ExceptionState;
33 class HTMLOptionElementOrHTMLOptGroupElement; 33 class HTMLOptionElementOrHTMLOptGroupElement;
34 class HTMLElementOrLong; 34 class HTMLElementOrLong;
35 class NodeListOrElement; 35 class NodeListOrElement;
36 36
37 class HTMLOptionsCollection final : public HTMLCollection { 37 class HTMLOptionsCollection final : public HTMLCollection {
38 DEFINE_WRAPPERTYPEINFO(); 38 DEFINE_WRAPPERTYPEINFO();
39 public: 39 public:
40 static PassRefPtrWillBeRawPtr<HTMLOptionsCollection> create(ContainerNode&, CollectionType); 40 static RawPtr<HTMLOptionsCollection> create(ContainerNode&, CollectionType);
41 41
42 HTMLOptionElement* item(unsigned offset) const { return toHTMLOptionElement( HTMLCollection::item(offset)); } 42 HTMLOptionElement* item(unsigned offset) const { return toHTMLOptionElement( HTMLCollection::item(offset)); }
43 43
44 void add(const HTMLOptionElementOrHTMLOptGroupElement&, const HTMLElementOrL ong&, ExceptionState&); 44 void add(const HTMLOptionElementOrHTMLOptGroupElement&, const HTMLElementOrL ong&, ExceptionState&);
45 void remove(int index); 45 void remove(int index);
46 46
47 int selectedIndex() const; 47 int selectedIndex() const;
48 void setSelectedIndex(int); 48 void setSelectedIndex(int);
49 49
50 void setLength(unsigned, ExceptionState&); 50 void setLength(unsigned, ExceptionState&);
51 void namedGetter(const AtomicString& name, NodeListOrElement&); 51 void namedGetter(const AtomicString& name, NodeListOrElement&);
52 bool anonymousIndexedSetter(unsigned, PassRefPtrWillBeRawPtr<HTMLOptionEleme nt>, ExceptionState&); 52 bool anonymousIndexedSetter(unsigned, RawPtr<HTMLOptionElement>, ExceptionSt ate&);
53 53
54 bool elementMatches(const HTMLElement&) const; 54 bool elementMatches(const HTMLElement&) const;
55 55
56 private: 56 private:
57 explicit HTMLOptionsCollection(ContainerNode&); 57 explicit HTMLOptionsCollection(ContainerNode&);
58 58
59 void supportedPropertyNames(Vector<String>& names) override; 59 void supportedPropertyNames(Vector<String>& names) override;
60 }; 60 };
61 61
62 DEFINE_TYPE_CASTS(HTMLOptionsCollection, LiveNodeListBase, collection, collectio n->type() == SelectOptions, collection.type() == SelectOptions); 62 DEFINE_TYPE_CASTS(HTMLOptionsCollection, LiveNodeListBase, collection, collectio n->type() == SelectOptions, collection.type() == SelectOptions);
63 63
64 inline bool HTMLOptionsCollection::elementMatches(const HTMLElement& element) co nst 64 inline bool HTMLOptionsCollection::elementMatches(const HTMLElement& element) co nst
65 { 65 {
66 if (!isHTMLOptionElement(element)) 66 if (!isHTMLOptionElement(element))
67 return false; 67 return false;
68 Node* parent = element.parentNode(); 68 Node* parent = element.parentNode();
69 if (!parent) 69 if (!parent)
70 return false; 70 return false;
71 if (parent == &rootNode()) 71 if (parent == &rootNode())
72 return true; 72 return true;
73 return isHTMLOptGroupElement(*parent) && parent->parentNode() == &rootNode() ; 73 return isHTMLOptGroupElement(*parent) && parent->parentNode() == &rootNode() ;
74 } 74 }
75 75
76 } // namespace blink 76 } // namespace blink
77 77
78 #endif // HTMLOptionsCollection_h 78 #endif // HTMLOptionsCollection_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698