1 // Copyright (c) 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_WEBSITE_SETTINGS_POPUP_ANDROID_H_
6 #define CHROME_BROWSER_UI_ANDROID_WEBSITE_SETTINGS_POPUP_ANDROID_H_
10 #include "base/android/scoped_java_ref.h"
11 #include "base/basictypes.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "chrome/browser/ui/website_settings/website_settings_ui.h"
19 // A Java counterpart will be generated for this enum.
20 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.chrome.browser
21 enum PageInfoConnectionType
{
24 CONNECTION_MIXED_CONTENT
,
25 CONNECTION_UNENCRYPTED
,
26 CONNECTION_ENCRYPTED_ERROR
,
27 CONNECTION_INTERNAL_PAGE
,
30 // Android implementation of the website settings UI.
31 class WebsiteSettingsPopupAndroid
: public WebsiteSettingsUI
{
33 WebsiteSettingsPopupAndroid(JNIEnv
* env
,
34 jobject java_website_settings
,
35 content::WebContents
* web_contents
);
36 ~WebsiteSettingsPopupAndroid() override
;
37 void Destroy(JNIEnv
* env
, jobject obj
);
38 void OnPermissionSettingChanged(JNIEnv
* env
,
43 // WebsiteSettingsUI implementations.
44 void SetCookieInfo(const CookieInfoList
& cookie_info_list
) override
;
45 void SetPermissionInfo(
46 const PermissionInfoList
& permission_info_list
) override
;
47 void SetIdentityInfo(const IdentityInfo
& identity_info
) override
;
48 void SetSelectedTab(WebsiteSettingsUI::TabId tab_id
) override
;
50 static bool RegisterWebsiteSettingsPopupAndroid(JNIEnv
* env
);
53 // The presenter that controlls the Website Settings UI.
54 scoped_ptr
<WebsiteSettings
> presenter_
;
56 // The java prompt implementation.
57 base::android::ScopedJavaGlobalRef
<jobject
> popup_jobject_
;
61 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupAndroid
);
64 #endif // CHROME_BROWSER_UI_ANDROID_WEBSITE_SETTINGS_POPUP_ANDROID_H_