| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011 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_TRANSLATE_TRANSLATE_INFOBAR_VIEW_H_ | |
| 6 #define CHROME_BROWSER_TRANSLATE_TRANSLATE_INFOBAR_VIEW_H_ | |
| 7 | |
| 8 // This interface should be implemented by classes that are the view (in the MVC | |
| 9 // sense) of the TranslateInfoBarDelegate (which is the model). | |
| 10 class TranslateInfoBarView { | |
| 11 public: | |
| 12 virtual void OriginalLanguageChanged() {} | |
| 13 virtual void TargetLanguageChanged() {} | |
| 14 | |
| 15 protected: | |
| 16 virtual ~TranslateInfoBarView() {} | |
| 17 }; | |
| 18 | |
| 19 #endif // CHROME_BROWSER_TRANSLATE_TRANSLATE_INFOBAR_VIEW_H_ | |
| OLD | NEW |