| Index: chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappLauncherActivity.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappLauncherActivity.java b/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappLauncherActivity.java
|
| index ed5a928d2efc03cd7e9d81b198d78223b293c99f..42c5d6da715b0fbe6460115739b412c1d01d9b5e 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappLauncherActivity.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappLauncherActivity.java
|
| @@ -12,7 +12,6 @@ import android.util.Base64;
|
|
|
| import org.chromium.base.ApiCompatibilityUtils;
|
| import org.chromium.base.Log;
|
| -import org.chromium.chrome.browser.BookmarkUtils;
|
| import org.chromium.chrome.browser.ShortcutHelper;
|
| import org.chromium.chrome.browser.ShortcutSource;
|
| import org.chromium.chrome.browser.WebappAuthenticator;
|
| @@ -72,7 +71,7 @@ public class WebappLauncherActivity extends Activity {
|
| // launch the URL with a VIEW Intent in the regular browser.
|
| launchIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(webappUrl));
|
| launchIntent.setClassName(getPackageName(), ChromeLauncherActivity.class.getName());
|
| - launchIntent.putExtra(BookmarkUtils.REUSE_URL_MATCHING_TAB_ELSE_NEW_TAB, true);
|
| + launchIntent.putExtra(ShortcutHelper.REUSE_URL_MATCHING_TAB_ELSE_NEW_TAB, true);
|
| launchIntent.putExtra(ShortcutHelper.EXTRA_SOURCE, webappSource);
|
| }
|
|
|
|
|