// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_TAB_CONTENTS_FORM_INTERACTION_TAB_HELPER_H_ #define CHROME_BROWSER_TAB_CONTENTS_FORM_INTERACTION_TAB_HELPER_H_ #include "content/public/browser/web_contents_user_data.h" namespace performance_manager { class GraphOwned; } // Tab helper that indicates if a tab contains forms that have been interacted // with. class FormInteractionTabHelper : public content::WebContentsUserData<FormInteractionTabHelper> { … }; #endif // CHROME_BROWSER_TAB_CONTENTS_FORM_INTERACTION_TAB_HELPER_H_