| Index: public/web/WebLabelElement.h
|
| diff --git a/public/web/WebLabelElement.h b/public/web/WebLabelElement.h
|
| index 975d3e1c3080c57bba4bccc46ab3e995cde3ce70..69c8e93bfae2b7493bb3f42a15244e94e5b58d62 100644
|
| --- a/public/web/WebLabelElement.h
|
| +++ b/public/web/WebLabelElement.h
|
| @@ -34,12 +34,13 @@
|
| #include "WebElement.h"
|
|
|
| #if BLINK_IMPLEMENTATION
|
| -namespace blink { 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<blink::HTMLLabelElement>&);
|
| - WebLabelElement& operator=(const PassRefPtrWillBeRawPtr<blink::HTMLLabelElement>&);
|
| - operator PassRefPtrWillBeRawPtr<blink::HTMLLabelElement>() const;
|
| + WebLabelElement(const PassRefPtrWillBeRawPtr<HTMLLabelElement>&);
|
| + WebLabelElement& operator=(const PassRefPtrWillBeRawPtr<HTMLLabelElement>&);
|
| + operator PassRefPtrWillBeRawPtr<HTMLLabelElement>() const;
|
| #endif
|
| };
|
|
|
|
|