blob: ee155b92cc90f668e43925d1cceb20a022cea492 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_HTML_FORMS_FORM_ASSOCIATED_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_HTML_FORMS_FORM_ASSOCIATED_H_
namespace blink {
class HTMLFormElement;
// Contains code to associate form with a form associated element
// https://html.spec.whatwg.org/multipage/forms.html#form-associated-element
class FormAssociated {
public:
// HTMLFormElement can be null
virtual void AssociateWith(HTMLFormElement*) = 0;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_HTML_FORMS_FORM_ASSOCIATED_H_