blob: 6a2c3775ea5523aed040ca3c32f6f6c5344269e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_CLIENT_H_
#define COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_CLIENT_H_
#include <string>
#include "base/memory/ref_counted.h"
#include "components/translate/core/browser/translate_prefs.h"
#include "components/translate/core/browser/translate_step.h"
#include "components/translate/core/common/translate_errors.h"
class GURL;
class PrefService;
class TranslateAcceptLanguages;
class TranslateDriver;
// A client interface that needs to be supplied to TranslateManager by the
// embedder.
//
// Each client instance is associated with a given context within which a
// TranslateManager is used (e.g. a single tab).
class TranslateClient {
public:
// Gets the TranslateDriver associated with the client.
virtual TranslateDriver* GetTranslateDriver() = 0;
// Returns the associated PrefService.
virtual PrefService* GetPrefs() = 0;
// Returns the associated TranslatePrefs.
virtual scoped_ptr<TranslatePrefs> GetTranslatePrefs() = 0;
// Returns the associated TranslateAcceptLanguages.
virtual TranslateAcceptLanguages* GetTranslateAcceptLanguages() = 0;
// Called when the embedder should present UI to the user corresponding to the
// user's current |step|.
virtual void ShowTranslateUI(translate::TranslateStep step,
const std::string source_language,
const std::string target_language,
TranslateErrors::Type error_type,
bool triggered_from_menu) = 0;
// Returns true if the URL can be translated.
virtual bool IsTranslatableURL(const GURL& url) = 0;
// Presents |report_url|, a URL containing information relating to reporting
// a language detection error, to the user to allow them to report language
// detection errors as desired.
virtual void ShowReportLanguageDetectionErrorUI(const GURL& report_url) = 0;
};
#endif // COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_CLIENT_H_
|