| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 namespace blink { | 31 namespace blink { |
| 32 | 32 |
| 33 class ContainerNode; | 33 class ContainerNode; |
| 34 class Document; | 34 class Document; |
| 35 class FormAttributeTargetObserver; | 35 class FormAttributeTargetObserver; |
| 36 class FormDataList; | 36 class FormDataList; |
| 37 class HTMLElement; | 37 class HTMLElement; |
| 38 class HTMLFormElement; | 38 class HTMLFormElement; |
| 39 class Node; | 39 class Node; |
| 40 class ValidityState; | 40 class ValidityState; |
| 41 class VisibleSelection; | |
| 42 | 41 |
| 43 class FormAssociatedElement : public WillBeGarbageCollectedMixin { | 42 class FormAssociatedElement : public WillBeGarbageCollectedMixin { |
| 44 public: | 43 public: |
| 45 virtual ~FormAssociatedElement(); | 44 virtual ~FormAssociatedElement(); |
| 46 | 45 |
| 47 #if !ENABLE(OILPAN) | 46 #if !ENABLE(OILPAN) |
| 48 void ref() { refFormAssociatedElement(); } | 47 void ref() { refFormAssociatedElement(); } |
| 49 void deref() { derefFormAssociatedElement(); } | 48 void deref() { derefFormAssociatedElement(); } |
| 50 #endif | 49 #endif |
| 51 | 50 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 }; | 138 }; |
| 140 | 139 |
| 141 HTMLElement* toHTMLElement(FormAssociatedElement*); | 140 HTMLElement* toHTMLElement(FormAssociatedElement*); |
| 142 HTMLElement& toHTMLElement(FormAssociatedElement&); | 141 HTMLElement& toHTMLElement(FormAssociatedElement&); |
| 143 const HTMLElement* toHTMLElement(const FormAssociatedElement*); | 142 const HTMLElement* toHTMLElement(const FormAssociatedElement*); |
| 144 const HTMLElement& toHTMLElement(const FormAssociatedElement&); | 143 const HTMLElement& toHTMLElement(const FormAssociatedElement&); |
| 145 | 144 |
| 146 } // namespace | 145 } // namespace |
| 147 | 146 |
| 148 #endif // FormAssociatedElement_h | 147 #endif // FormAssociatedElement_h |
| OLD | NEW |