// 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_SERVICE_CONTROLLER_H_ #define CHROME_BROWSER_ON_DEVICE_TRANSLATION_SERVICE_CONTROLLER_H_ #include "base/no_destructor.h" #include "chrome/services/on_device_translation/public/mojom/on_device_translation_service.mojom.h" #include "chrome/services/on_device_translation/public/mojom/translator.mojom.h" #include "mojo/public/cpp/bindings/remote.h" // This class is the controller that launches the on-device translation service // and delegates the functionalities. class OnDeviceTranslationServiceController { … }; #endif // CHROME_BROWSER_ON_DEVICE_TRANSLATION_SERVICE_CONTROLLER_H_