// Copyright 2018 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_UI_HATS_HATS_HELPER_H_ #define CHROME_BROWSER_UI_HATS_HATS_HELPER_H_ #include "chrome/browser/ui/performance_controls/performance_controls_hats_service.h" #include "content/public/browser/web_contents_observer.h" #include "content/public/browser/web_contents_user_data.h" namespace content { class WebContents; } class Profile; // This is a browser side per tab helper that allows an entry trigger to // launch Happiness Tracking Surveys (HaTS) class HatsHelper : public content::WebContentsObserver, public content::WebContentsUserData<HatsHelper> { … }; #endif // CHROME_BROWSER_UI_HATS_HATS_HELPER_H_