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

Commit 5625d3a

Browse files
committed
Update to 65.0.3325.230
1 parent c95167e commit 5625d3a

File tree

967 files changed

+64429
-12288
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

967 files changed

+64429
-12288
lines changed

.idea/codeStyles/Project.xml

Lines changed: 251 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ android {
3636
sourceSets {
3737
main {
3838
java.filter.exclude(
39-
"com/google/protobuf/*.java",
40-
"com/google/protobuf/micro/*.java",
41-
"com/google/protobuf/nano/*.java",
42-
"com/google/protobuf/nano/android/*.java",
43-
"org/chromium/chrome/browser/offlinepages/evaluation/*.java"
39+
"com/google/protobuf/*.java",
40+
"com/google/protobuf/micro/*.java",
41+
"com/google/protobuf/nano/*.java",
42+
"com/google/protobuf/nano/android/*.java",
43+
"org/chromium/chrome/browser/offlinepages/evaluation/*.java"
4444
)
4545
}
4646
}
@@ -83,6 +83,7 @@ dependencies {
8383
implementation project(':data_chart')
8484
implementation project(':media')
8585
implementation project(':ui')
86+
implementation project(':browseractions')
8687
androidTestImplementation "com.android.support.test:runner:$rootProject.ext.runnerVersion"
8788
androidTestImplementation "com.android.support.test.espresso:espresso-core:$rootProject.ext.espressoVersion"
8889
testImplementation "junit:junit:$rootProject.ext.junitVersion"

app/libs/gcm.jar

1.57 KB
Binary file not shown.

app/src/main/AndroidManifest.xml

Lines changed: 4 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ by a child template that "extends" this file.
3030
channels use "runtime permission" uses-permission-sdk-23 which provides
3131
permission on Android M and later without a prompt.
3232
-->
33-
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
3433
<uses-permission-sdk-23 android:name="android.permission.BLUETOOTH"/>
3534
<uses-permission-sdk-23 android:name="android.permission.BLUETOOTH_ADMIN"/>
3635
<uses-permission-sdk-23 android:name="android.permission.REORDER_TASKS"/>
@@ -130,7 +129,6 @@ by a child template that "extends" this file.
130129
android:value="true"/>
131130

132131

133-
<meta-data android:name="com.sec.android.support.multiwindow" android:value="true" />
134132
<meta-data android:name="android.content.APP_RESTRICTIONS"
135133
android:resource="@xml/app_restrictions"/>
136134

@@ -630,7 +628,6 @@ by a child template that "extends" this file.
630628
<category android:name="android.intent.category.LAUNCHER" />
631629
<category android:name="android.intent.category.BROWSABLE" />
632630
<category android:name="android.intent.category.APP_BROWSER" />
633-
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER" />
634631
</intent-filter>
635632
<meta-data android:name="android.app.shortcuts"
636633
android:resource="@xml/launchershortcuts" />
@@ -693,7 +690,7 @@ by a child template that "extends" this file.
693690
android:excludeFromRecents="true"
694691
android:autoRemoveFromRecents="true"
695692
android:windowSoftInputMode="stateHidden|adjustPan"
696-
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize">
693+
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize"
697694
>
698695
</activity>
699696
<activity android:name="org.chromium.chrome.browser.firstrun.FirstRunActivity"
@@ -703,7 +700,8 @@ by a child template that "extends" this file.
703700
android:excludeFromRecents="true"
704701
android:autoRemoveFromRecents="true"
705702
android:windowSoftInputMode="stateHidden|adjustPan"
706-
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize">
703+
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize"
704+
>
707705
</activity>
708706
<activity android:name="org.chromium.chrome.browser.firstrun.TabbedModeFirstRunActivity"
709707
android:theme="@style/TabbedModeFirstRunTheme"
@@ -712,7 +710,7 @@ by a child template that "extends" this file.
712710
android:excludeFromRecents="true"
713711
android:autoRemoveFromRecents="true"
714712
android:windowSoftInputMode="stateHidden|adjustPan"
715-
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize">
713+
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize"
716714
>
717715
</activity>
718716
<activity android:name="org.chromium.chrome.browser.vr_shell.VrFirstRunActivity"
@@ -1453,21 +1451,6 @@ by a child template that "extends" this file.
14531451
</activity>
14541452

14551453
<!-- Activities for Browser Actions -->
1456-
<activity android:name="org.chromium.chrome.browser.browseractions.BrowserActionActivity"
1457-
android:theme="@style/FullscreenTransparentActivityTheme"
1458-
android:exported="true"
1459-
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize">
1460-
<intent-filter>
1461-
<action android:name="androidx.browser.browseractions.browser_action_open" />
1462-
<category android:name="android.intent.category.DEFAULT" />
1463-
<data android:scheme="http" />
1464-
<data android:scheme="https" />
1465-
</intent-filter>
1466-
</activity>
1467-
1468-
<service android:name="org.chromium.chrome.browser.browseractions.BrowserActionsService"
1469-
android:exported="false">
1470-
</service>
14711454

14721455
<!-- Service for Broadcasting a Physical Web URL -->
14731456
<service
6.64 KB
Binary file not shown.

app/src/main/assets/en-US.pak

-241 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)