summaryrefslogtreecommitdiff
path: root/src/org/chromium/support_lib_boundary/ProfileBoundaryInterface.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/chromium/support_lib_boundary/ProfileBoundaryInterface.java')
-rw-r--r--src/org/chromium/support_lib_boundary/ProfileBoundaryInterface.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/org/chromium/support_lib_boundary/ProfileBoundaryInterface.java b/src/org/chromium/support_lib_boundary/ProfileBoundaryInterface.java
new file mode 100644
index 0000000..457a561
--- /dev/null
+++ b/src/org/chromium/support_lib_boundary/ProfileBoundaryInterface.java
@@ -0,0 +1,23 @@
+// Copyright 2023 The Chromium Authors
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package org.chromium.support_lib_boundary;
+
+import android.webkit.CookieManager;
+import android.webkit.GeolocationPermissions;
+import android.webkit.ServiceWorkerController;
+import android.webkit.WebStorage;
+
+/** Boundary interface for Profile. */
+public interface ProfileBoundaryInterface {
+ String getName();
+
+ CookieManager getCookieManager();
+
+ WebStorage getWebStorage();
+
+ GeolocationPermissions getGeoLocationPermissions();
+
+ ServiceWorkerController getServiceWorkerController();
+}