| Index: Source/core/html/FormController.cpp
|
| diff --git a/Source/core/html/FormController.cpp b/Source/core/html/FormController.cpp
|
| index b68b2fb16a6777f4047ea457f52471cbb03d6bb6..92b574732204d39e51a13db32a9356f5c757208e 100644
|
| --- a/Source/core/html/FormController.cpp
|
| +++ b/Source/core/html/FormController.cpp
|
| @@ -219,7 +219,7 @@ PassOwnPtr<SavedFormState> SavedFormState::deserialize(const Vector<String>& sta
|
| String name = stateVector[index++];
|
| String type = stateVector[index++];
|
| FormControlState state = FormControlState::deserialize(stateVector, index);
|
| - if (type.isEmpty() || type.find(isNotFormControlTypeCharacter) != notFound || state.isFailure())
|
| + if (type.isEmpty() || type.find(isNotFormControlTypeCharacter) != kNotFound || state.isFailure())
|
| return nullptr;
|
| savedFormState->appendControlState(name, type, state);
|
| }
|
|
|