OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 CHROME_BROWSER_TRANSLATE_TRANSLATE_UI_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_TRANSLATE_TRANSLATE_UI_DELEGATE_H_ |
6 #define CHROME_BROWSER_TRANSLATE_TRANSLATE_UI_DELEGATE_H_ | 6 #define CHROME_BROWSER_TRANSLATE_TRANSLATE_UI_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
14 #include "chrome/common/chrome_constants.h" | 14 #include "chrome/common/chrome_constants.h" |
15 #include "chrome/common/translate/translate_errors.h" | 15 #include "components/translate/core/common/translate_errors.h" |
16 | 16 |
17 class TranslatePrefs; | 17 class TranslatePrefs; |
18 | 18 |
19 namespace content { | 19 namespace content { |
20 class WebContents; | 20 class WebContents; |
21 } // namespace content | 21 } // namespace content |
22 | 22 |
23 // The TranslateUIDelegate is a generic delegate for UI which offers Translate | 23 // The TranslateUIDelegate is a generic delegate for UI which offers Translate |
24 // feature to the user. | 24 // feature to the user. |
25 class TranslateUIDelegate { | 25 class TranslateUIDelegate { |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 // The index for language the page should be translated to. | 122 // The index for language the page should be translated to. |
123 size_t target_language_index_; | 123 size_t target_language_index_; |
124 | 124 |
125 // The translation related preferences. | 125 // The translation related preferences. |
126 scoped_ptr<TranslatePrefs> prefs_; | 126 scoped_ptr<TranslatePrefs> prefs_; |
127 | 127 |
128 DISALLOW_COPY_AND_ASSIGN(TranslateUIDelegate); | 128 DISALLOW_COPY_AND_ASSIGN(TranslateUIDelegate); |
129 }; | 129 }; |
130 | 130 |
131 #endif // CHROME_BROWSER_TRANSLATE_TRANSLATE_UI_DELEGATE_H_ | 131 #endif // CHROME_BROWSER_TRANSLATE_TRANSLATE_UI_DELEGATE_H_ |
OLD | NEW |