Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/ChromeTabbedActivity.java

Issue 2408233003: Fix signature mismatch of updateHerbIntent. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/src/org/chromium/chrome/browser/ChromeTabbedActivity.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ChromeTabbedActivity.java b/chrome/android/java/src/org/chromium/chrome/browser/ChromeTabbedActivity.java
index 81d3ac7d9d39e15aedd52f5a34010511b4b2e725..a3e50399548084ff87e335731eec1f6c194916cb 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/ChromeTabbedActivity.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/ChromeTabbedActivity.java
@@ -10,7 +10,6 @@ import android.app.ActivityManager;
import android.content.Context;
import android.content.Intent;
import android.graphics.Color;
-import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.os.SystemClock;
@@ -854,8 +853,7 @@ public class ChromeTabbedActivity extends ChromeActivity implements OverviewMode
newIntent.putExtra(Browser.EXTRA_APPLICATION_ID, getPackageName());
newIntent.putExtra(
CustomTabIntentDataProvider.EXTRA_IS_OPENED_BY_CHROME, true);
- ChromeLauncherActivity.updateHerbIntent(ChromeTabbedActivity.this,
- newIntent, Uri.parse(IntentHandler.getUrlFromIntent(newIntent)));
+ ChromeLauncherActivity.updateHerbIntent(ChromeTabbedActivity.this, newIntent);
// Launch the Activity on top of this task.
int updatedFlags = newIntent.getFlags();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698