Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit 43fd2c4

Browse files
authored
bump GV version to 76.0.20200319094444 (#3006)
1 parent c9d7007 commit 43fd2c4

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

app/src/common/shared/org/mozilla/vrbrowser/browser/PermissionDelegate.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,9 @@ public void onContentPermissionRequest(GeckoSession aSession, String aUri, int a
134134
type = PermissionWidget.PermissionType.Notification;
135135
} else if (aType == PERMISSION_GEOLOCATION) {
136136
type = PermissionWidget.PermissionType.Location;
137+
} else if (aType == PERMISSION_MEDIA_KEY_SYSTEM_ACCESS) {
138+
callback.grant();
139+
return;
137140
} else {
138141
Log.e(LOGTAG, "onContentPermissionRequest unknown permission: " + aType);
139142
callback.reject();

versions.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ext.deps = [:]
2424
def versions = [:]
2525
// GeckoView versions can be found here:
2626
// https://maven.mozilla.org/?prefix=maven2/org/mozilla/geckoview/
27-
versions.gecko_view = "75.0.20200304084140"
27+
versions.gecko_view = "76.0.20200319094444"
2828
versions.android_components = "28.0.1"
2929
// Note that android-components also depends on application-services,
3030
// and in fact is our main source of appservices-related functionality.

0 commit comments

Comments
 (0)