Adding instrumentation to locate the source of jankiness
[chromium-blink-merge.git] / chrome / browser / ui / android / website_settings_popup_android.h
blob89ef6016fcfbc1cad87202265817fd09a340dc53
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_
8 #include <jni.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"
15 namespace content {
16 class WebContents;
19 // A Java counterpart will be generated for this enum.
20 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.chrome.browser
21 enum PageInfoConnectionType {
22 CONNECTION_UNKNOWN,
23 CONNECTION_ENCRYPTED,
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 {
32 public:
33 WebsiteSettingsPopupAndroid(JNIEnv* env,
34 jobject java_website_settings,
35 content::WebContents* web_contents);
36 virtual ~WebsiteSettingsPopupAndroid();
37 void Destroy(JNIEnv* env, jobject obj);
39 // WebsiteSettingsUI implementations.
40 virtual void SetCookieInfo(const CookieInfoList& cookie_info_list) override;
41 virtual void SetPermissionInfo(
42 const PermissionInfoList& permission_info_list) override;
43 virtual void SetIdentityInfo(const IdentityInfo& identity_info) override;
44 virtual void SetFirstVisit(const base::string16& first_visit) override;
45 virtual void SetSelectedTab(WebsiteSettingsUI::TabId tab_id) override;
47 static bool RegisterWebsiteSettingsPopupAndroid(JNIEnv* env);
49 private:
50 // The presenter that controlls the Website Settings UI.
51 scoped_ptr<WebsiteSettings> presenter_;
53 // The java prompt implementation.
54 base::android::ScopedJavaGlobalRef<jobject> popup_jobject_;
56 GURL url_;
58 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupAndroid);
61 #endif // CHROME_BROWSER_UI_ANDROID_WEBSITE_SETTINGS_POPUP_ANDROID_H_