Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(388)

Side by Side Diff: trunk/src/components/translate/core/browser/translate_driver.h

Issue 296003014: Revert 272217 "LanguageState should be owned by TranslateManager" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_DRIVER_H_ 5 #ifndef COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_DRIVER_H_
6 #define COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_DRIVER_H_ 6 #define COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_DRIVER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 class GURL; 10 class GURL;
11 class LanguageState;
11 12
12 // Interface that allows Translate core code to interact with its driver (i.e., 13 // Interface that allows Translate core code to interact with its driver (i.e.,
13 // obtain information from it and give information to it). A concrete 14 // obtain information from it and give information to it). A concrete
14 // implementation must be provided by the driver. 15 // implementation must be provided by the driver.
15 class TranslateDriver { 16 class TranslateDriver {
16 public: 17 public:
17 // Returns true if the current page was navigated through a link. 18 // Returns true if the current page was navigated through a link.
18 virtual bool IsLinkNavigation() = 0; 19 virtual bool IsLinkNavigation() = 0;
19 20
20 // Called when Translate is enabled or disabled. 21 // Called when Translate is enabled or disabled.
21 virtual void OnTranslateEnabledChanged() = 0; 22 virtual void OnTranslateEnabledChanged() = 0;
22 23
23 // Called when the page is "translated" state of the page changed. 24 // Called when the page is "translated" state of the page changed.
24 virtual void OnIsPageTranslatedChanged() = 0; 25 virtual void OnIsPageTranslatedChanged() = 0;
25 26
27 // Gets the LanguageState associated with the driver.
28 virtual LanguageState& GetLanguageState() = 0;
29
26 // Translates the page contents from |source_lang| to |target_lang|. 30 // Translates the page contents from |source_lang| to |target_lang|.
27 virtual void TranslatePage(const std::string& translate_script, 31 virtual void TranslatePage(const std::string& translate_script,
28 const std::string& source_lang, 32 const std::string& source_lang,
29 const std::string& target_lang) = 0; 33 const std::string& target_lang) = 0;
30 34
31 // Reverts the contents of the page to its original language. 35 // Reverts the contents of the page to its original language.
32 virtual void RevertTranslation() = 0; 36 virtual void RevertTranslation() = 0;
33 37
34 // Returns whether the user is currently operating in off-the-record mode. 38 // Returns whether the user is currently operating in off-the-record mode.
35 virtual bool IsOffTheRecord() = 0; 39 virtual bool IsOffTheRecord() = 0;
(...skipping 16 matching lines...) Expand all
52 56
53 // Returns an int identifying the current page. Should only be called if 57 // Returns an int identifying the current page. Should only be called if
54 // |HasCurrentPage()| is true. 58 // |HasCurrentPage()| is true.
55 virtual int GetCurrentPageID() = 0; 59 virtual int GetCurrentPageID() = 0;
56 60
57 // Opens |url| in a new tab. 61 // Opens |url| in a new tab.
58 virtual void OpenUrlInNewTab(const GURL& url) = 0; 62 virtual void OpenUrlInNewTab(const GURL& url) = 0;
59 }; 63 };
60 64
61 #endif // COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_DRIVER_H_ 65 #endif // COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_DRIVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698