Chromium Code Reviews| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 165 OwnPtrWillBeMember<PastNamesMap> m_pastNamesMap; | 165 OwnPtrWillBeMember<PastNamesMap> m_pastNamesMap; |
| 166 | 166 |
| 167 RadioButtonGroupScope m_radioButtonGroupScope; | 167 RadioButtonGroupScope m_radioButtonGroupScope; |
| 168 | 168 |
| 169 // Do not access m_associatedElements directly. Use associatedElements() ins tead. | 169 // Do not access m_associatedElements directly. Use associatedElements() ins tead. |
| 170 FormAssociatedElement::List m_associatedElements; | 170 FormAssociatedElement::List m_associatedElements; |
| 171 // Do not access m_imageElements directly. Use imageElements() instead. | 171 // Do not access m_imageElements directly. Use imageElements() instead. |
| 172 WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> > m_imageElements; | 172 WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> > m_imageElements; |
| 173 #if !ENABLE(OILPAN) | 173 #if !ENABLE(OILPAN) |
| 174 WeakPtrFactory<HTMLFormElement> m_weakPtrFactory; | 174 WeakPtrFactory<HTMLFormElement> m_weakPtrFactory; |
| 175 #endif | 175 #endif |
|
keishi
2014/09/18 04:23:19
nit: extra space.
spartha
2014/09/18 09:05:39
Done.
| |
| 176 bool m_associatedElementsAreDirty; | 176 unsigned m_associatedElementsAreDirty : 1; |
|
keishi
2014/09/18 04:23:19
Do we need to change the type to unsigned?
spartha
2014/09/18 09:05:39
Done.
| |
| 177 bool m_imageElementsAreDirty; | 177 unsigned m_imageElementsAreDirty : 1; |
| 178 bool m_hasElementsAssociatedByParser; | 178 unsigned m_hasElementsAssociatedByParser : 1; |
| 179 bool m_didFinishParsingChildren; | 179 unsigned m_didFinishParsingChildren : 1; |
| 180 | 180 |
| 181 bool m_wasUserSubmitted; | 181 unsigned m_wasUserSubmitted : 1; |
| 182 bool m_isSubmittingOrInUserJSSubmitEvent; | 182 unsigned m_isSubmittingOrInUserJSSubmitEvent : 1; |
| 183 bool m_shouldSubmit; | 183 unsigned m_shouldSubmit : 1; |
| 184 | 184 |
| 185 bool m_isInResetFunction; | 185 unsigned m_isInResetFunction : 1; |
| 186 | 186 |
| 187 bool m_wasDemoted; | 187 unsigned m_wasDemoted : 1; |
| 188 | 188 |
| 189 OwnPtrWillBeMember<GenericEventQueue> m_pendingAutocompleteEventsQueue; | 189 OwnPtrWillBeMember<GenericEventQueue> m_pendingAutocompleteEventsQueue; |
| 190 }; | 190 }; |
| 191 | 191 |
| 192 } // namespace blink | 192 } // namespace blink |
| 193 | 193 |
| 194 #endif // HTMLFormElement_h | 194 #endif // HTMLFormElement_h |
| OLD | NEW |