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

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

Issue 1238053002: Move the WebContents to the AsyncTabCreationParams for tabbed mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: TabDelegate cleaning Created 5 years, 5 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
Index: chrome/android/java/src/org/chromium/chrome/browser/tabmodel/TabCreatorManager.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/TabCreatorManager.java b/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/TabCreatorManager.java
index 238b24a432c942f7f296493e28142d001c075226..e06ea2370ae8a2c1b167f993103d3a5860770afd 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/TabCreatorManager.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/TabCreatorManager.java
@@ -59,11 +59,11 @@ public interface TabCreatorManager {
public abstract Tab launchUrl(String url, TabModel.TabLaunchType type);
/**
- * Creates a Tab to host the given WebContents asynchronously.
+ * Creates a Tab to host the given WebContents.
* @param webContents The web contents to create a tab around.
* @param parentId The id of the parent tab.
* @param type The TabLaunchType describing how this tab was created.
- * @param url URL to display in the WebContents.
+ * @param url URL to show in the Tab. (Needed only for asynchronous tab creation.)
* @return Whether a Tab was created successfully.
*/
public abstract boolean createTabWithWebContents(

Powered by Google App Engine
This is Rietveld 408576698