Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / ui / android / infobars / app_banner_infobar_android.h
blob9cc364ec1c9e732f66216dfca230484c7b2b380b
1 // Copyright 2015 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_APP_BANNER_INFOBAR_ANDROID_H_
6 #define CHROME_BROWSER_UI_ANDROID_INFOBARS_APP_BANNER_INFOBAR_ANDROID_H_
8 #include "base/android/scoped_java_ref.h"
9 #include "base/basictypes.h"
10 #include "chrome/browser/ui/android/infobars/confirm_infobar.h"
11 #include "url/gurl.h"
13 namespace banners {
14 class AppBannerInfoBarDelegateAndroid;
15 } // namespace banners
18 class AppBannerInfoBarAndroid : public ConfirmInfoBar {
19 public:
20 // Constructs an AppBannerInfoBarAndroid promoting a native app.
21 AppBannerInfoBarAndroid(
22 scoped_ptr<banners::AppBannerInfoBarDelegateAndroid> delegate,
23 const base::android::ScopedJavaGlobalRef<jobject>& japp_data);
25 // Constructs an AppBannerInfoBarAndroid promoting a web app.
26 AppBannerInfoBarAndroid(
27 scoped_ptr<banners::AppBannerInfoBarDelegateAndroid> delegate,
28 const GURL& app_url);
30 ~AppBannerInfoBarAndroid() override;
32 // Called when the installation state of the app may have changed.
33 // Updates the InfoBar visuals to match the new state and re-enables controls
34 // that may have been disabled.
35 void OnInstallStateChanged(int new_state);
37 private:
38 // InfoBarAndroid overrides.
39 base::android::ScopedJavaLocalRef<jobject> CreateRenderInfoBar(
40 JNIEnv* env) override;
42 // Native app: Details about the app.
43 base::android::ScopedJavaGlobalRef<jobject> japp_data_;
45 // Web app: URL for the app.
46 GURL app_url_;
48 base::android::ScopedJavaGlobalRef<jobject> java_infobar_;
50 DISALLOW_COPY_AND_ASSIGN(AppBannerInfoBarAndroid);
53 // Register native methods.
54 bool RegisterAppBannerInfoBarAndroid(JNIEnv* env);
56 #endif // CHROME_BROWSER_UI_ANDROID_INFOBARS_APP_BANNER_INFOBAR_ANDROID_H_