blob: 14276d73d65b39d3e84da9dbd2ecb22ecafb0658 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_INFOBARS_ANDROID_INFOBAR_ANDROID_H_
#define COMPONENTS_INFOBARS_ANDROID_INFOBAR_ANDROID_H_
#include <string>
#include "base/android/scoped_java_ref.h"
#include "base/callback.h"
#include "base/macros.h"
#include "components/infobars/core/infobar.h"
namespace infobars {
class InfoBarAndroid : public InfoBar {
public:
// A Java counterpart will be generated for this enum.
// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.chrome.browser.infobar
// GENERATED_JAVA_PREFIX_TO_STRIP: ACTION_
enum ActionType {
ACTION_NONE = 0,
// Confirm infobar
ACTION_OK = 1,
ACTION_CANCEL = 2,
// Translate infobar
ACTION_TRANSLATE = 3,
ACTION_TRANSLATE_SHOW_ORIGINAL = 4,
};
// A function that maps from Chromium IDs to Drawable IDs.
using ResourceIdMapper = base::RepeatingCallback<int(int)>;
InfoBarAndroid(std::unique_ptr<InfoBarDelegate> delegate,
const ResourceIdMapper& resource_id_mapper);
~InfoBarAndroid() override;
// InfoBar:
virtual base::android::ScopedJavaLocalRef<jobject> CreateRenderInfoBar(
JNIEnv* env) = 0;
virtual void SetJavaInfoBar(
const base::android::JavaRef<jobject>& java_info_bar);
const base::android::JavaRef<jobject>& GetJavaInfoBar();
bool HasSetJavaInfoBar() const;
int GetInfoBarIdentifier(JNIEnv* env,
const base::android::JavaParamRef<jobject>& obj);
virtual void OnLinkClicked(JNIEnv* env,
const base::android::JavaParamRef<jobject>& obj) {}
void OnButtonClicked(JNIEnv* env,
const base::android::JavaParamRef<jobject>& obj,
jint action);
void OnCloseButtonClicked(JNIEnv* env,
const base::android::JavaParamRef<jobject>& obj);
void CloseJavaInfoBar();
// Maps from a Chromium ID (IDR_TRANSLATE) to a Drawable ID.
int GetJavaIconId();
// Acquire the java infobar from a different one. This is used to do in-place
// replacements.
virtual void PassJavaInfoBar(InfoBarAndroid* source) {}
protected:
// Derived classes must implement this method to process the corresponding
// action.
virtual void ProcessButton(int action) = 0;
void CloseInfoBar();
InfoBarAndroid* infobar_android() { return this; }
private:
ResourceIdMapper resource_id_mapper_;
base::android::ScopedJavaGlobalRef<jobject> java_info_bar_;
DISALLOW_COPY_AND_ASSIGN(InfoBarAndroid);
};
} // namespace infobars
#endif // COMPONENTS_INFOBARS_ANDROID_INFOBAR_ANDROID_H_
|