Index: content/public/android/java/src/org/chromium/content/browser/JellyBeanContentView.java |
diff --git a/content/public/android/java/src/org/chromium/content/browser/JellyBeanContentView.java b/content/public/android/java/src/org/chromium/content/browser/JellyBeanContentView.java |
deleted file mode 100644 |
index 50599e11965cfa1f06163535407272401c7eb511..0000000000000000000000000000000000000000 |
--- a/content/public/android/java/src/org/chromium/content/browser/JellyBeanContentView.java |
+++ /dev/null |
@@ -1,41 +0,0 @@ |
-// Copyright 2012 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.content.browser; |
- |
-import android.content.Context; |
-import android.os.Bundle; |
-import android.util.AttributeSet; |
-import android.view.accessibility.AccessibilityNodeProvider; |
- |
-import org.chromium.ui.base.WindowAndroid; |
- |
-/** |
- * A version of {@link ContentView} that supports JellyBean features. |
- */ |
-class JellyBeanContentView extends ContentView { |
- JellyBeanContentView(Context context, long nativeWebContents, WindowAndroid windowAndroid, |
- AttributeSet attrs, int defStyle) { |
- super(context, nativeWebContents, windowAndroid, attrs, defStyle); |
- } |
- |
- @Override |
- public boolean performAccessibilityAction(int action, Bundle arguments) { |
- if (getContentViewCore().supportsAccessibilityAction(action)) { |
- return getContentViewCore().performAccessibilityAction(action, arguments); |
- } |
- |
- return super.performAccessibilityAction(action, arguments); |
- } |
- |
- @Override |
- public AccessibilityNodeProvider getAccessibilityNodeProvider() { |
- AccessibilityNodeProvider provider = getContentViewCore().getAccessibilityNodeProvider(); |
- if (provider != null) { |
- return provider; |
- } else { |
- return super.getAccessibilityNodeProvider(); |
- } |
- } |
-} |