Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(810)

Unified Diff: chrome/browser/ui/android/page_info/website_settings_popup_android.h

Issue 2754383004: Rename WebsiteSettings code to PageInfo. (Closed)
Patch Set: Upload missing comment fix for WebSettingsUI -> PageInfoUI. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/android/page_info/website_settings_popup_android.h
diff --git a/chrome/browser/ui/android/page_info/website_settings_popup_android.h b/chrome/browser/ui/android/page_info/website_settings_popup_android.h
deleted file mode 100644
index c7e2a0d57d458495ad8ae2a78289a10f55557bf8..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/android/page_info/website_settings_popup_android.h
+++ /dev/null
@@ -1,69 +0,0 @@
-// Copyright (c) 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 CHROME_BROWSER_UI_ANDROID_PAGE_INFO_WEBSITE_SETTINGS_POPUP_ANDROID_H_
-#define CHROME_BROWSER_UI_ANDROID_PAGE_INFO_WEBSITE_SETTINGS_POPUP_ANDROID_H_
-
-#include <jni.h>
-
-#include <memory>
-
-#include "base/android/scoped_java_ref.h"
-#include "base/macros.h"
-#include "chrome/browser/ui/page_info/website_settings_ui.h"
-
-namespace content {
-class WebContents;
-}
-
-class SearchGeolocationService;
-
-// A Java counterpart will be generated for this enum.
-// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.chrome.browser
-enum PageInfoConnectionType {
- CONNECTION_UNKNOWN,
- CONNECTION_ENCRYPTED,
- CONNECTION_MIXED_CONTENT,
- CONNECTION_UNENCRYPTED,
- CONNECTION_ENCRYPTED_ERROR,
- CONNECTION_INTERNAL_PAGE,
-};
-
-// Android implementation of the website settings UI.
-class WebsiteSettingsPopupAndroid : public WebsiteSettingsUI {
- public:
- WebsiteSettingsPopupAndroid(JNIEnv* env,
- jobject java_website_settings,
- content::WebContents* web_contents);
- ~WebsiteSettingsPopupAndroid() override;
- void Destroy(JNIEnv* env, const base::android::JavaParamRef<jobject>& obj);
- void RecordWebsiteSettingsAction(
- JNIEnv* env,
- const base::android::JavaParamRef<jobject>& obj,
- jint action);
-
- // WebsiteSettingsUI implementations.
- void SetCookieInfo(const CookieInfoList& cookie_info_list) override;
- void SetPermissionInfo(const PermissionInfoList& permission_info_list,
- ChosenObjectInfoList chosen_object_info_list) override;
- void SetIdentityInfo(const IdentityInfo& identity_info) override;
-
- static bool RegisterWebsiteSettingsPopupAndroid(JNIEnv* env);
-
- private:
- // The presenter that controlls the Website Settings UI.
- std::unique_ptr<WebsiteSettings> presenter_;
-
- // The java prompt implementation.
- base::android::ScopedJavaGlobalRef<jobject> popup_jobject_;
-
- // Owned by the profile.
- SearchGeolocationService* search_geolocation_service_;
-
- GURL url_;
-
- DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupAndroid);
-};
-
-#endif // CHROME_BROWSER_UI_ANDROID_PAGE_INFO_WEBSITE_SETTINGS_POPUP_ANDROID_H_

Powered by Google App Engine
This is Rietveld 408576698