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() { |
- } |
- |
-} |