Skip to content
This repository was archived by the owner on Dec 6, 2019. It is now read-only.

Commit 880e9cf

Browse files
committed
Update to 61.0.3163.93
1 parent cace7dc commit 880e9cf

File tree

8 files changed

+5
-9
lines changed

8 files changed

+5
-9
lines changed

app/src/main/assets/resources.pak

136 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

app/src/main/java/org/chromium/base/library_loader/NativeLibraries.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ public class NativeLibraries {
88
public static final String[] LIBRARIES =
99
{"chrome"};
1010
static String sVersionNumber =
11-
"61.0.3163.79";
11+
"61.0.3163.93";
1212
}

app/src/main/java/org/chromium/chrome/browser/ChromeVersionConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class ChromeVersionConstants {
88
static final String PRODUCT_NAME = "Chromium";
9-
static final String PRODUCT_VERSION = "61.0.3163.79";
9+
static final String PRODUCT_VERSION = "61.0.3163.93";
1010
static final boolean IS_OFFICIAL_BUILD = 1 == 1;
1111

1212
static final int PRODUCT_MAJOR_VERSION = 61;

app/src/main/java/org/chromium/chrome/browser/omaha/OmahaBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ static String sendRequestToServer(HttpURLConnection urlConnection, String reques
477477
writer.write(request, 0, request.length());
478478
StreamUtil.closeQuietly(writer);
479479
checkServerResponseCode(urlConnection);
480-
} catch (IOException | SecurityException e) {
480+
} catch (IOException | SecurityException | ArrayIndexOutOfBoundsException e) {
481481
throw new RequestFailureException("Failed to write request to server: ", e);
482482
}
483483

4 KB
Binary file not shown.

app/src/main/res/values-v21/restriction_values.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -341,10 +341,6 @@ If this policy set to false, Google Cast will be disabled.</string>
341341
Note that this policy depends on the operating system certificate verification stack allowing SHA-1 signatures. If an OS update changes the OS handling of SHA-1 certificates, this policy may no longer have effect. Further, this policy is intended as a temporary workaround to give enterprises more time to move away from SHA-1. This policy will be removed on or around January 1st 2019.
342342

343343
If this policy is not set, or it is set to false, then Chromium follows the publicly announced SHA-1 deprecation schedule.</string>
344-
<string name="ForceBrowserSigninTitle">Enables force sign in for Chromium</string>
345-
<string name="ForceBrowserSigninDesc">If this policy is set to true, user has to sign in to Chromium with their profile before using the browser. And the default value of BrowserGuestModeEnabled will be set to false.
346-
347-
If this policy is set to false or not configured, user can use the browser without sign in to Chromium.</string>
348344
<string name="ForceGoogleSafeSearchTitle">Force Google SafeSearch</string>
349345
<string name="ForceGoogleSafeSearchDesc">Forces queries in Google Web Search to be done with SafeSearch set to active and prevents users from changing this setting.
350346

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ ext {
2828
minSdkVersion = 19
2929
targetSdkVersion = 23
3030

31-
versionCode = 2
32-
versionName = "61.0.3163.79"
31+
versionCode = 3
32+
versionName = "61.0.3163.93"
3333

3434
supportLibraryVersion = "26.0.0-alpha1"
3535
playServicesVersion = "10.2.6"

0 commit comments

Comments
 (0)