| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. |
| 3 * Copyright (C) 2010, 2011, 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2010, 2011, 2012 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 * | 19 * |
| 20 */ | 20 */ |
| 21 | 21 |
| 22 #ifndef FormController_h | 22 #ifndef FormController_h |
| 23 #define FormController_h | 23 #define FormController_h |
| 24 | 24 |
| 25 #include "core/dom/CheckedRadioButtons.h" | 25 #include "core/dom/CheckedRadioButtons.h" |
| 26 #include <wtf/Deque.h> | 26 #include "wtf/Forward.h" |
| 27 #include <wtf/Forward.h> | 27 #include "wtf/ListHashSet.h" |
| 28 #include <wtf/ListHashSet.h> | 28 #include "wtf/Vector.h" |
| 29 #include <wtf/text/WTFString.h> | 29 #include "wtf/text/WTFString.h" |
| 30 #include <wtf/Vector.h> | |
| 31 | 30 |
| 32 namespace WebCore { | 31 namespace WebCore { |
| 33 | 32 |
| 34 class FormAssociatedElement; | 33 class FormAssociatedElement; |
| 35 class FormKeyGenerator; | 34 class FormKeyGenerator; |
| 36 class HTMLFormControlElementWithState; | 35 class HTMLFormControlElementWithState; |
| 37 class HTMLFormElement; | 36 class HTMLFormElement; |
| 38 class SavedFormState; | 37 class SavedFormState; |
| 39 | 38 |
| 40 class FormControlState { | 39 class FormControlState { |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 static void formStatesFromStateVector(const Vector<String>&, SavedFormStateM
ap&); | 104 static void formStatesFromStateVector(const Vector<String>&, SavedFormStateM
ap&); |
| 106 | 105 |
| 107 CheckedRadioButtons m_checkedRadioButtons; | 106 CheckedRadioButtons m_checkedRadioButtons; |
| 108 FormElementListHashSet m_formElementsWithState; | 107 FormElementListHashSet m_formElementsWithState; |
| 109 SavedFormStateMap m_savedFormStateMap; | 108 SavedFormStateMap m_savedFormStateMap; |
| 110 OwnPtr<FormKeyGenerator> m_formKeyGenerator; | 109 OwnPtr<FormKeyGenerator> m_formKeyGenerator; |
| 111 }; | 110 }; |
| 112 | 111 |
| 113 } // namespace WebCore | 112 } // namespace WebCore |
| 114 #endif | 113 #endif |
| OLD | NEW |