Chromium Code Reviews| Index: Source/core/html/HTMLSelectElement.h |
| diff --git a/Source/core/html/HTMLSelectElement.h b/Source/core/html/HTMLSelectElement.h |
| index 65ab1d5a5dac86f4f931ae260e7a40283b60270b..ff3fb8c01ac886aeed4c97a9d5896756009542e7 100644 |
| --- a/Source/core/html/HTMLSelectElement.h |
| +++ b/Source/core/html/HTMLSelectElement.h |
| @@ -206,25 +206,12 @@ private: |
| bool m_isParsingInProgress; |
| }; |
| -inline bool isHTMLSelectElement(const Node* node) |
| -{ |
| - return node->hasTagName(HTMLNames::selectTag); |
| -} |
| - |
| inline HTMLSelectElement* toHTMLSelectElement(Node* node) |
| { |
| - ASSERT_WITH_SECURITY_IMPLICATION(!node || isHTMLSelectElement(node)); |
| + ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(HTMLNames::selectTag)); |
| return static_cast<HTMLSelectElement*>(node); |
| } |
| -inline const HTMLSelectElement* toHTMLSelectElement(const Node* node) |
|
tkent
2013/07/17 01:47:56
Why do you remove this function?
kangil_
2013/07/17 02:16:22
Just because we don't use this at the moment.
But,
tkent
2013/07/17 03:47:05
Hmm, it seems this function is actually unused.
I
|
| -{ |
| - ASSERT_WITH_SECURITY_IMPLICATION(!node || isHTMLSelectElement(node)); |
| - return static_cast<const HTMLSelectElement*>(node); |
| -} |
| - |
| -void toHTMLSelectElement(const HTMLSelectElement*); // This overload will catch anyone doing an unnecessary cast. |
|
tkent
2013/07/17 01:47:56
Ditto.
kangil_
2013/07/17 02:16:22
I don't have strong opinion on this either, but sh
kangil_
2013/07/17 02:21:46
Ah, this is wrong question. Please ignore this. :(
tkent
2013/07/17 03:47:05
Removing this function is not a goal of this CL, r
|
| - |
| } // namespace |
| #endif |