Skip to content

Commit

Permalink
bump GV version to 76.0.20200319094444 (#3006)
Browse files Browse the repository at this point in the history
  • Loading branch information
bluemarvin committed Mar 19, 2020
1 parent c9d7007 commit 43fd2c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@ public void onContentPermissionRequest(GeckoSession aSession, String aUri, int a
type = PermissionWidget.PermissionType.Notification;
} else if (aType == PERMISSION_GEOLOCATION) {
type = PermissionWidget.PermissionType.Location;
} else if (aType == PERMISSION_MEDIA_KEY_SYSTEM_ACCESS) {
callback.grant();
return;
} else {
Log.e(LOGTAG, "onContentPermissionRequest unknown permission: " + aType);
callback.reject();
Expand Down
2 changes: 1 addition & 1 deletion versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ext.deps = [:]
def versions = [:]
// GeckoView versions can be found here:
// https://maven.mozilla.org/?prefix=maven2/org/mozilla/geckoview/
versions.gecko_view = "75.0.20200304084140"
versions.gecko_view = "76.0.20200319094444"
versions.android_components = "28.0.1"
// Note that android-components also depends on application-services,
// and in fact is our main source of appservices-related functionality.
Expand Down

0 comments on commit 43fd2c4

Please sign in to comment.