Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(686)

Unified Diff: Source/core/html/FormController.h

Issue 24246011: Move form-related 78 files to core/html/forms/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/FileInputType.cpp ('k') | Source/core/html/FormController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/FormController.h
diff --git a/Source/core/html/FormController.h b/Source/core/html/FormController.h
deleted file mode 100644
index 49ffe45ce1441b995973a214e914daf39b3defe2..0000000000000000000000000000000000000000
--- a/Source/core/html/FormController.h
+++ /dev/null
@@ -1,113 +0,0 @@
-/*
- * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
- * Copyright (C) 2010, 2011, 2012 Google Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB. If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- *
- */
-
-#ifndef FormController_h
-#define FormController_h
-
-#include "core/dom/CheckedRadioButtons.h"
-#include "wtf/Forward.h"
-#include "wtf/ListHashSet.h"
-#include "wtf/Vector.h"
-#include "wtf/text/AtomicStringHash.h"
-
-namespace WebCore {
-
-class FormAssociatedElement;
-class FormKeyGenerator;
-class HTMLFormControlElementWithState;
-class HTMLFormElement;
-class SavedFormState;
-
-class FormControlState {
-public:
- FormControlState() : m_type(TypeSkip) { }
- explicit FormControlState(const String& value) : m_type(TypeRestore) { m_values.append(value); }
- static FormControlState deserialize(const Vector<String>& stateVector, size_t& index);
- FormControlState(const FormControlState& another) : m_type(another.m_type), m_values(another.m_values) { }
- FormControlState& operator=(const FormControlState&);
-
- bool isFailure() const { return m_type == TypeFailure; }
- size_t valueSize() const { return m_values.size(); }
- const String& operator[](size_t i) const { return m_values[i]; }
- void append(const String&);
- void serializeTo(Vector<String>& stateVector) const;
-
-private:
- enum Type { TypeSkip, TypeRestore, TypeFailure };
- explicit FormControlState(Type type) : m_type(type) { }
-
- Type m_type;
- Vector<String> m_values;
-};
-
-inline FormControlState& FormControlState::operator=(const FormControlState& another)
-{
- m_type = another.m_type;
- m_values = another.m_values;
- return *this;
-}
-
-inline void FormControlState::append(const String& value)
-{
- m_type = TypeRestore;
- m_values.append(value);
-}
-
-class FormController {
- WTF_MAKE_FAST_ALLOCATED;
-public:
- static PassOwnPtr<FormController> create()
- {
- return adoptPtr(new FormController);
- }
- ~FormController();
-
- CheckedRadioButtons& checkedRadioButtons() { return m_checkedRadioButtons; }
-
- void registerFormElementWithState(HTMLFormControlElementWithState*);
- void unregisterFormElementWithState(HTMLFormControlElementWithState*);
- // This should be callled only by Document::formElementsState().
- Vector<String> formElementsState() const;
- // This should be callled only by Document::setStateForNewFormElements().
- void setStateForNewFormElements(const Vector<String>&);
- void willDeleteForm(HTMLFormElement*);
- void restoreControlStateFor(HTMLFormControlElementWithState&);
- void restoreControlStateIn(HTMLFormElement&);
-
- static Vector<String> getReferencedFilePaths(const Vector<String>& stateVector);
-
-private:
- typedef ListHashSet<RefPtr<HTMLFormControlElementWithState>, 64> FormElementListHashSet;
- typedef HashMap<AtomicString, OwnPtr<SavedFormState> > SavedFormStateMap;
-
- FormController();
- static PassOwnPtr<SavedFormStateMap> createSavedFormStateMap(const FormElementListHashSet&);
- FormControlState takeStateForFormElement(const HTMLFormControlElementWithState&);
- static void formStatesFromStateVector(const Vector<String>&, SavedFormStateMap&);
-
- CheckedRadioButtons m_checkedRadioButtons;
- FormElementListHashSet m_formElementsWithState;
- SavedFormStateMap m_savedFormStateMap;
- OwnPtr<FormKeyGenerator> m_formKeyGenerator;
-};
-
-} // namespace WebCore
-#endif
« no previous file with comments | « Source/core/html/FileInputType.cpp ('k') | Source/core/html/FormController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698