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, |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 static Vector<String> getReferencedFilePaths(const Vector<String>& stateVect
or); | 114 static Vector<String> getReferencedFilePaths(const Vector<String>& stateVect
or); |
115 | 115 |
116 private: | 116 private: |
117 FormController(); | 117 FormController(); |
118 FormControlState takeStateForFormElement(const HTMLFormControlElementWithSta
te&); | 118 FormControlState takeStateForFormElement(const HTMLFormControlElementWithSta
te&); |
119 static void formStatesFromStateVector(const Vector<String>&, SavedFormStateM
ap&); | 119 static void formStatesFromStateVector(const Vector<String>&, SavedFormStateM
ap&); |
120 | 120 |
121 RadioButtonGroupScope m_radioButtonGroupScope; | 121 RadioButtonGroupScope m_radioButtonGroupScope; |
122 RefPtrWillBeMember<DocumentState> m_documentState; | 122 RefPtrWillBeMember<DocumentState> m_documentState; |
123 SavedFormStateMap m_savedFormStateMap; | 123 SavedFormStateMap m_savedFormStateMap; |
124 OwnPtr<FormKeyGenerator> m_formKeyGenerator; | 124 OwnPtrWillBeMember<FormKeyGenerator> m_formKeyGenerator; |
125 }; | 125 }; |
126 | 126 |
127 } // namespace WebCore | 127 } // namespace WebCore |
128 #endif | 128 #endif |
OLD | NEW |