File tree 1 file changed +5
-9
lines changed
android/java/org/chromium/chrome/browser/app
1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -299,15 +299,11 @@ public void finishNativeInitialization() {
299
299
}
300
300
BraveSyncReflectionUtils .showInformers ();
301
301
302
- if (BraveConfig .P3A_ENABLED ) {
303
- if (!BravePrefServiceBridge .getInstance ().hasPathP3AEnabled ()) {
304
- BravePrefServiceBridge .getInstance ().setP3AEnabled (false );
305
- }
306
- if (!OnboardingPrefManager .getInstance ().isP3aOnboardingShown ()) {
307
- Intent p3aOnboardingIntent = new Intent (this , P3aOnboardingActivity .class );
308
- p3aOnboardingIntent .setFlags (Intent .FLAG_ACTIVITY_SINGLE_TOP );
309
- startActivity (p3aOnboardingIntent );
310
- }
302
+ if (BraveConfig .P3A_ENABLED
303
+ && !OnboardingPrefManager .getInstance ().isP3aOnboardingShown ()) {
304
+ Intent p3aOnboardingIntent = new Intent (this , P3aOnboardingActivity .class );
305
+ p3aOnboardingIntent .setFlags (Intent .FLAG_ACTIVITY_SINGLE_TOP );
306
+ startActivity (p3aOnboardingIntent );
311
307
}
312
308
313
309
if (!OnboardingPrefManager .getInstance ().isOneTimeNotificationStarted ()
You can’t perform that action at this time.
0 commit comments