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_UI_ANDROID_INFOBARS_TRANSLATE_INFOBAR_H_ | 5 #ifndef CHROME_BROWSER_UI_ANDROID_INFOBARS_TRANSLATE_INFOBAR_H_ |
6 #define CHROME_BROWSER_UI_ANDROID_INFOBARS_TRANSLATE_INFOBAR_H_ | 6 #define CHROME_BROWSER_UI_ANDROID_INFOBARS_TRANSLATE_INFOBAR_H_ |
7 | 7 |
8 #include "base/android/scoped_java_ref.h" | 8 #include "base/android/scoped_java_ref.h" |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "chrome/browser/translate/translate_infobar_delegate.h" | 10 #include "chrome/browser/translate/translate_infobar_delegate.h" |
11 #include "chrome/browser/ui/android/infobars/infobar_android.h" | 11 #include "chrome/browser/ui/android/infobars/infobar_android.h" |
12 | 12 |
13 class TranslateInfoBar : public InfoBarAndroid { | 13 class TranslateInfoBar : public InfoBarAndroid { |
14 public: | 14 public: |
15 explicit TranslateInfoBar(scoped_ptr<TranslateInfoBarDelegate> delegate); | 15 TranslateInfoBar(InfoBarService* owner, TranslateInfoBarDelegate* delegate); |
16 virtual ~TranslateInfoBar(); | 16 virtual ~TranslateInfoBar(); |
17 | 17 |
18 // JNI methods specific to translate. | 18 // JNI methods specific to translate. |
19 void ApplyTranslateOptions(JNIEnv* env, | 19 void ApplyTranslateOptions(JNIEnv* env, |
20 jobject obj, | 20 jobject obj, |
21 int source_language_index, | 21 int source_language_index, |
22 int target_language_index, | 22 int target_language_index, |
23 bool always_translate, | 23 bool always_translate, |
24 bool never_translate_language, | 24 bool never_translate_language, |
25 bool never_translate_site); | 25 bool never_translate_site); |
(...skipping 15 matching lines...) Expand all Loading... |
41 | 41 |
42 base::android::ScopedJavaGlobalRef<jobject> java_translate_delegate_; | 42 base::android::ScopedJavaGlobalRef<jobject> java_translate_delegate_; |
43 | 43 |
44 DISALLOW_COPY_AND_ASSIGN(TranslateInfoBar); | 44 DISALLOW_COPY_AND_ASSIGN(TranslateInfoBar); |
45 }; | 45 }; |
46 | 46 |
47 // Registers the native methods through JNI. | 47 // Registers the native methods through JNI. |
48 bool RegisterTranslateInfoBarDelegate(JNIEnv* env); | 48 bool RegisterTranslateInfoBarDelegate(JNIEnv* env); |
49 | 49 |
50 #endif // CHROME_BROWSER_UI_ANDROID_INFOBARS_TRANSLATE_INFOBAR_H_ | 50 #endif // CHROME_BROWSER_UI_ANDROID_INFOBARS_TRANSLATE_INFOBAR_H_ |
OLD | NEW |