Index: chrome/android/java/src/org/chromium/chrome/browser/ChromeApplication.java |
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ChromeApplication.java b/chrome/android/java/src/org/chromium/chrome/browser/ChromeApplication.java |
index d28f6f49918a13151b85bfea9ebd9c83502b6606..f88ab56c7193f43c10e134a9622ae4d816771a79 100644 |
--- a/chrome/android/java/src/org/chromium/chrome/browser/ChromeApplication.java |
+++ b/chrome/android/java/src/org/chromium/chrome/browser/ChromeApplication.java |
@@ -60,6 +60,7 @@ import org.chromium.chrome.browser.tabmodel.document.ActivityDelegateImpl; |
import org.chromium.chrome.browser.tabmodel.document.DocumentTabModelSelector; |
import org.chromium.chrome.browser.tabmodel.document.StorageDelegate; |
import org.chromium.chrome.browser.tabmodel.document.TabDelegate; |
+import org.chromium.chrome.browser.webapps.GooglePlayWebApkInstallDelegate; |
import org.chromium.components.signin.AccountManagerDelegate; |
import org.chromium.components.signin.SystemAccountManagerDelegate; |
import org.chromium.content.app.ContentApplication; |
@@ -391,8 +392,13 @@ public class ChromeApplication extends ContentApplication { |
return null; |
} |
+ /** Creates an instance of GooglePlayWebApkInstallDelegate. */ |
+ public GooglePlayWebApkInstallDelegate createGooglePlayWebApkInstallDelegate() { |
+ return null; |
+ } |
+ |
/** |
- * Returns the Singleton instance of the DocumentTabModelSelector. |
+ * Returns the singleton instance of the DocumentTabModelSelector. |
* TODO(dfalcantara): Find a better place for this once we differentiate between activity and |
* application-level TabModelSelectors. |
* @return The DocumentTabModelSelector for the application. |