Chromium Code Reviews| Index: chrome/android/java/src/org/chromium/chrome/browser/document/ChromeLauncherActivity.java |
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/document/ChromeLauncherActivity.java b/chrome/android/java/src/org/chromium/chrome/browser/document/ChromeLauncherActivity.java |
| index f1ca36c7e2d422e4508aa9543fd082d9582866a3..129bf38aac3003983e0d0bddf5bfa4bfd92d48e8 100644 |
| --- a/chrome/android/java/src/org/chromium/chrome/browser/document/ChromeLauncherActivity.java |
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/document/ChromeLauncherActivity.java |
| @@ -487,8 +487,9 @@ public class ChromeLauncherActivity extends Activity |
| private boolean launchFirstRunExperience() { |
| final boolean isIntentActionMain = getIntent() != null |
| && TextUtils.equals(getIntent().getAction(), Intent.ACTION_MAIN); |
| - final Intent freIntent = FirstRunFlowSequencer.checkIfFirstRunIsNecessary( |
| - this, isIntentActionMain); |
| + final Intent freIntent = |
| + FirstRunFlowSequencer.checkIfFirstRunIsNecessary(this, isIntentActionMain, |
| + IntentHandler.determineExternalIntentSource(getPackageName(), getIntent())); |
|
Bernhard Bauer
2016/06/16 16:35:36
You pass this to checkIfFirstRunIsNecessary() ever
gogerald1
2016/06/16 18:59:20
Done.
|
| if (freIntent == null) return false; |
| if ((getIntent().getFlags() & Intent.FLAG_ACTIVITY_NEW_TASK) != 0) { |