// 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_CONTENT_SETTINGS_CONTENT_SETTING_IMAGE_MODEL_STATES_H_ #define CHROME_BROWSER_UI_CONTENT_SETTINGS_CONTENT_SETTING_IMAGE_MODEL_STATES_H_ #include "chrome/browser/ui/content_settings/content_setting_image_model.h" #include "content/public/browser/web_contents_user_data.h" ImageType; // Class that keeps track of the tab-specific state associated with each // ContentSettingImageModel. Each tab will have one instance of this class, // which keeps track of states for each ImageType. class ContentSettingImageModelStates : public content::WebContentsUserData<ContentSettingImageModelStates> { … }; #endif // CHROME_BROWSER_UI_CONTENT_SETTINGS_CONTENT_SETTING_IMAGE_MODEL_STATES_H_