chromium/components/translate/content/browser/partial_translate_manager.h

// 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 COMPONENTS_TRANSLATE_CONTENT_BROWSER_PARTIAL_TRANSLATE_MANAGER_H_
#define COMPONENTS_TRANSLATE_CONTENT_BROWSER_PARTIAL_TRANSLATE_MANAGER_H_

#include <stddef.h>

#include <memory>
#include <string>
#include <vector>

#include "base/functional/callback.h"
#include "base/memory/weak_ptr.h"
#include "components/contextual_search/core/browser/contextual_search_context.h"
#include "components/contextual_search/core/browser/contextual_search_delegate.h"
#include "components/contextual_search/core/browser/resolved_search_term.h"
#include "content/public/browser/web_contents.h"

// Structure used to pass context needed to resolve a partial translation.
struct PartialTranslateRequest {};

// Indicates the outcome of a Partial Translate request.
enum class PartialTranslateStatus {};

// Structure used to return translation details for a given partial translate.
struct PartialTranslateResponse {};

// PartialTranslateManager handles translation of user-selected strings of text.
class PartialTranslateManager {};

#endif  // COMPONENTS_TRANSLATE_CONTENT_BROWSER_PARTIAL_TRANSLATE_MANAGER_H_