Index: public/web/WebInputElement.h |
diff --git a/public/web/WebInputElement.h b/public/web/WebInputElement.h |
index ff0d813fdeef8919d0758184c13863ea5d17efef..61856453b4bd5488a8c51299074689963bbc6bda 100644 |
--- a/public/web/WebInputElement.h |
+++ b/public/web/WebInputElement.h |
@@ -33,13 +33,10 @@ |
#include "WebFormControlElement.h" |
-#if BLINK_IMPLEMENTATION |
-namespace blink { class HTMLInputElement; } |
-#endif |
- |
namespace blink { |
- class WebElementCollection; |
+class HTMLInputElement; |
+class WebElementCollection; |
// Provides readonly access to some properties of a DOM input element node. |
class WebInputElement : public WebFormControlElement { |
@@ -88,9 +85,9 @@ namespace blink { |
BLINK_EXPORT void setShouldRevealPassword(bool value); |
#if BLINK_IMPLEMENTATION |
- WebInputElement(const PassRefPtrWillBeRawPtr<blink::HTMLInputElement>&); |
- WebInputElement& operator=(const PassRefPtrWillBeRawPtr<blink::HTMLInputElement>&); |
- operator PassRefPtrWillBeRawPtr<blink::HTMLInputElement>() const; |
+ WebInputElement(const PassRefPtrWillBeRawPtr<HTMLInputElement>&); |
+ WebInputElement& operator=(const PassRefPtrWillBeRawPtr<HTMLInputElement>&); |
+ operator PassRefPtrWillBeRawPtr<HTMLInputElement>() const; |
#endif |
}; |