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

Side by Side Diff: components/translate/content/browser/content_translate_driver.h

Issue 133273029: Move LanguageState to the translate component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments Created 6 years, 11 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_TRANSLATE_CONTENT_BROWSER_CONTENT_TRANSLATE_DRIVER_H_
6 #define COMPONENTS_TRANSLATE_CONTENT_BROWSER_CONTENT_TRANSLATE_DRIVER_H_
7
8 #include "components/translate/core/browser/translate_driver.h"
9
10 #include "components/translate/core/browser/language_state.h"
11
12 namespace content {
13 struct LoadCommittedDetails;
14 class NavigationController;
15 }
16
17 class LanguageStateObserver;
18
19 // Content implementation of TranslateDriver.
20 class ContentTranslateDriver : public TranslateDriver {
21 public:
22
23 ContentTranslateDriver(content::NavigationController* nav_controller);
24 virtual ~ContentTranslateDriver();
25
26 // Gets the language state.
27 LanguageState& GetLanguageState();
28
29 // Sets the LanguageStateObserver. Calling this method is optional.
30 void SetLanguageStateObserver(LanguageStateObserver* observer);
31
32 // Must be called on navigations.
33 void DidNavigate(const content::LoadCommittedDetails& details);
34
35 private:
36 // TranslateDriver methods
37 virtual void OnIsPageTranslatedChanged() OVERRIDE;
38 virtual void OnTranslateEnabledChanged() OVERRIDE;
39 virtual bool IsLinkNavigation() OVERRIDE;
40
41 // The navigation controller of the tab we are associated with.
42 content::NavigationController* navigation_controller_;
43
44 LanguageState language_state_;
45 LanguageStateObserver* language_state_observer_;
46
47 DISALLOW_COPY_AND_ASSIGN(ContentTranslateDriver);
48 };
49
50 #endif // COMPONENTS_TRANSLATE_CONTENT_BROWSER_CONTENT_TRANSLATE_DRIVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698