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.
5 #ifndef CHROME_BROWSER_UI_ANDROID_INFOBARS_CONFIRM_INFOBAR_H_
6 #define CHROME_BROWSER_UI_ANDROID_INFOBARS_CONFIRM_INFOBAR_H_
8 #include "base/basictypes.h"
9 #include "base/strings/string16.h"
10 #include "chrome/browser/ui/android/infobars/infobar_android.h"
11 #include "components/infobars/core/confirm_infobar_delegate.h"
13 class ConfirmInfoBar
: public InfoBarAndroid
{
15 explicit ConfirmInfoBar(scoped_ptr
<ConfirmInfoBarDelegate
> delegate
);
16 ~ConfirmInfoBar() override
;
19 base::string16
GetTextFor(ConfirmInfoBarDelegate::InfoBarButton button
);
20 ConfirmInfoBarDelegate
* GetDelegate();
21 void OnLinkClicked(JNIEnv
* env
, jobject obj
) override
;
23 // InfoBarAndroid overrides.
24 base::android::ScopedJavaLocalRef
<jobject
> CreateRenderInfoBar(
25 JNIEnv
* env
) override
;
28 void ProcessButton(int action
, const std::string
& action_value
) override
;
30 base::android::ScopedJavaGlobalRef
<jobject
> java_confirm_delegate_
;
32 DISALLOW_COPY_AND_ASSIGN(ConfirmInfoBar
);
35 // Registers native methods.
36 bool RegisterConfirmInfoBarDelegate(JNIEnv
* env
);
38 #endif // CHROME_BROWSER_UI_ANDROID_INFOBARS_CONFIRM_INFOBAR_H_