// Copyright 2024 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_ON_DEVICE_TRANSLATION_TRANSLATOR_H_ #define CHROME_BROWSER_ON_DEVICE_TRANSLATION_TRANSLATOR_H_ #include "chrome/services/on_device_translation/public/mojom/translator.mojom.h" #include "mojo/public/cpp/bindings/remote.h" #include "third_party/blink/public/mojom/on_device_translation/translator.mojom.h" // The browser-side implementation of `blink::mojom::Translator`, which // exposes the `Translate()` method to do translation. class Translator : public blink::mojom::Translator { … }; #endif // CHROME_BROWSER_ON_DEVICE_TRANSLATION_TRANSLATOR_H_