| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2013 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 CHROME_BROWSER_UI_BROWSER_LANGUAGE_STATE_OBSERVER_H_ |
| 6 #define CHROME_BROWSER_UI_BROWSER_LANGUAGE_STATE_OBSERVER_H_ |
| 7 |
| 8 #include "chrome/browser/tab_contents/language_state_observer.h" |
| 9 |
| 10 #include "base/basictypes.h" |
| 11 #include "base/compiler_specific.h" |
| 12 |
| 13 class Browser; |
| 14 |
| 15 // The implementation of LanguageStateObserver for Browser. This observes the |
| 16 // state if Translate is enabled or not, and updates the toolbar. |
| 17 class BrowserLanguageStateObserver : public LanguageStateObserver { |
| 18 public: |
| 19 explicit BrowserLanguageStateObserver(Browser* browser); |
| 20 |
| 21 virtual ~BrowserLanguageStateObserver(); |
| 22 |
| 23 // Overridden from LanguageState::Observer |
| 24 virtual void OnTranslateEnabledChanged(content::WebContents* source) OVERRIDE; |
| 25 |
| 26 private: |
| 27 Browser* browser_; |
| 28 |
| 29 DISALLOW_COPY_AND_ASSIGN(BrowserLanguageStateObserver); |
| 30 }; |
| 31 |
| 32 #endif // CHROME_BROWSER_UI_BROWSER_LANGUAGE_STATE_OBSERVER_H_ |
| OLD | NEW |