forked from GrapheneOS/Vanadium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
0009-disable-first-run-welcome-page.patch
34 lines (27 loc) · 1.6 KB
/
0009-disable-first-run-welcome-page.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
From c110418f19bedf1934162f1e50a33fc3fa3be3e8 Mon Sep 17 00:00:00 2001
From: Daniel Micay <[email protected]>
Date: Thu, 24 Nov 2016 08:19:03 -0500
Subject: [PATCH 09/48] disable first run welcome page
---
.../chromium/chrome/browser/firstrun/FirstRunActivity.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/firstrun/FirstRunActivity.java b/chrome/android/java/src/org/chromium/chrome/browser/firstrun/FirstRunActivity.java
index 344604b637e6..9ed1d99ebb1f 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/firstrun/FirstRunActivity.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/firstrun/FirstRunActivity.java
@@ -84,7 +84,7 @@ public class FirstRunActivity extends FirstRunActivityBase implements FirstRunPa
private static FirstRunActivityObserver sObserver;
- private boolean mShowWelcomePage = true;
+ private boolean mShowWelcomePage;
private String mResultSignInAccountName;
private boolean mResultIsDefaultAccount;
@@ -206,7 +206,7 @@ public class FirstRunActivity extends FirstRunActivityBase implements FirstRunPa
}
mFreProperties = freProperties;
- mShowWelcomePage = mFreProperties.getBoolean(SHOW_WELCOME_PAGE);
+ //mShowWelcomePage = mFreProperties.getBoolean(SHOW_WELCOME_PAGE);
if (TextUtils.isEmpty(mResultSignInAccountName)) {
mResultSignInAccountName = mFreProperties.getString(
SigninFirstRunFragment.FORCE_SIGNIN_ACCOUNT_TO);
--
2.23.0