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

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

Issue 2123393002: Rename AppLinkHandler to InstantAppsHandler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make test inner class static Created 4 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeApplication.java » ('j') | 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/AppLinkHandler.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/AppLinkHandler.java b/chrome/android/java/src/org/chromium/chrome/browser/AppLinkHandler.java
deleted file mode 100644
index 786b47e6e557bbda930c18975b4dbd45702364f1..0000000000000000000000000000000000000000
--- a/chrome/android/java/src/org/chromium/chrome/browser/AppLinkHandler.java
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-package org.chromium.chrome.browser;
-
-import android.content.Context;
-import android.content.Intent;
-
-/** App link handler. */
-public class AppLinkHandler {
-
- private static final Object INSTANCE_LOCK = new Object();
- private static AppLinkHandler sInstance;
-
- public static AppLinkHandler getInstance(ChromeApplication application) {
- synchronized (INSTANCE_LOCK) {
- if (sInstance == null) {
- sInstance = application.createAppLinkHandler();
- }
- }
- return sInstance;
- }
-
- /** Cache whether the feature is enabled. */
- public void cacheAppLinkEnabled(Context context) {
- }
-
- /** Handle incoming intent. */
- public boolean handleIncomingIntent(Context context, Intent intent, boolean isCustomTabs) {
- return false;
- }
-
- /**
- * Handle intent.
- * TODO(mariakhomenko): remove
- */
- @Deprecated
- public boolean handleIntent(Context context, Intent intent, boolean isCustomTabsIntent) {
- return false;
- }
-
- /**
- * Commit metrics.
- * TODO(mariakhomenko): remove
- */
- @Deprecated
- public void commitMetrics() {
- }
-
-}
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeApplication.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698