Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / public / web / WebLabelElement.h
index 8efa52d..69c8e93 100644 (file)
 #include "WebElement.h"
 
 #if BLINK_IMPLEMENTATION
-namespace WebCore { class HTMLLabelElement; }
 namespace WTF { template <typename T> class PassRefPtr; }
 #endif
 
 namespace blink {
 
+class HTMLLabelElement;
+
 // Provides readonly access to some properties of a DOM label element node.
 class WebLabelElement : public WebElement {
 public:
@@ -57,9 +58,9 @@ public:
     BLINK_EXPORT WebElement correspondingControl();
 
 #if BLINK_IMPLEMENTATION
-    WebLabelElement(const PassRefPtrWillBeRawPtr<WebCore::HTMLLabelElement>&);
-    WebLabelElement& operator=(const PassRefPtrWillBeRawPtr<WebCore::HTMLLabelElement>&);
-    operator PassRefPtrWillBeRawPtr<WebCore::HTMLLabelElement>() const;
+    WebLabelElement(const PassRefPtrWillBeRawPtr<HTMLLabelElement>&);
+    WebLabelElement& operator=(const PassRefPtrWillBeRawPtr<HTMLLabelElement>&);
+    operator PassRefPtrWillBeRawPtr<HTMLLabelElement>() const;
 #endif
 };