// Copyright 2022 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_TRANSLATE_PARTIAL_TRANSLATE_BUBBLE_MODEL_H_ #define CHROME_BROWSER_UI_TRANSLATE_PARTIAL_TRANSLATE_BUBBLE_MODEL_H_ #include <string> #include "base/observer_list_types.h" #include "chrome/browser/ui/translate/translate_language_list_model.h" #include "components/translate/core/common/translate_errors.h" #include "content/public/browser/web_contents.h" // The model for the Partial Translate bubble UX. This manages the user's // manipulation of the bubble and offers the data to show on the bubble. class PartialTranslateBubbleModel : public TranslateLanguageListModel { … }; #endif // CHROME_BROWSER_UI_TRANSLATE_PARTIAL_TRANSLATE_BUBBLE_MODEL_H_