| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef WebLabelElement_h | 31 #ifndef WebLabelElement_h |
| 32 #define WebLabelElement_h | 32 #define WebLabelElement_h |
| 33 | 33 |
| 34 #include "WebElement.h" | 34 #include "WebElement.h" |
| 35 | 35 |
| 36 #if BLINK_IMPLEMENTATION | |
| 37 namespace WTF { | |
| 38 template <typename T> | |
| 39 class PassRefPtr; | |
| 40 } | |
| 41 #endif | |
| 42 | |
| 43 namespace blink { | 36 namespace blink { |
| 44 | 37 |
| 45 class HTMLLabelElement; | 38 class HTMLLabelElement; |
| 46 | 39 |
| 47 // Provides readonly access to some properties of a DOM label element node. | 40 // Provides readonly access to some properties of a DOM label element node. |
| 48 class WebLabelElement final : public WebElement { | 41 class WebLabelElement final : public WebElement { |
| 49 public: | 42 public: |
| 50 WebLabelElement() : WebElement() {} | 43 WebLabelElement() : WebElement() {} |
| 51 WebLabelElement(const WebLabelElement& element) : WebElement(element) {} | 44 WebLabelElement(const WebLabelElement& element) : WebElement(element) {} |
| 52 | 45 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 64 WebLabelElement& operator=(HTMLLabelElement*); | 57 WebLabelElement& operator=(HTMLLabelElement*); |
| 65 operator HTMLLabelElement*() const; | 58 operator HTMLLabelElement*() const; |
| 66 #endif | 59 #endif |
| 67 }; | 60 }; |
| 68 | 61 |
| 69 DECLARE_WEB_NODE_TYPE_CASTS(WebLabelElement); | 62 DECLARE_WEB_NODE_TYPE_CASTS(WebLabelElement); |
| 70 | 63 |
| 71 } // namespace blink | 64 } // namespace blink |
| 72 | 65 |
| 73 #endif | 66 #endif |
| OLD | NEW |