| Index: content/public/android/java/src/org/chromium/content/browser/accessibility/BaseBrowserAccessibilityManager.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/accessibility/BaseBrowserAccessibilityManager.java b/content/public/android/java/src/org/chromium/content/browser/accessibility/BaseBrowserAccessibilityManager.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6732f514ad85f1b77c768c2a03648da624654d09
|
| --- /dev/null
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/accessibility/BaseBrowserAccessibilityManager.java
|
| @@ -0,0 +1,28 @@
|
| +// Copyright (c) 2013 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.accessibility;
|
| +
|
| +import android.view.MotionEvent;
|
| +import org.chromium.base.JNINamespace;
|
| +
|
| +
|
| +/**
|
| + * An interface for the methods supported on BrowserAccessibilityManager since it
|
| + * requires JellyBean or higher.
|
| + */
|
| +@JNINamespace("content")
|
| +public interface BaseBrowserAccessibilityManager {
|
| + /**
|
| + * @see View#dispatchHoverEvent(MotionEvent)
|
| + */
|
| + public boolean dispatchHoverEvent(MotionEvent event);
|
| +
|
| + /**
|
| + * Called by ContentViewCore to notify us when the frame info is initialized,
|
| + * the first time, since until that point, we can't use mRenderCoordinates to transform
|
| + * web coordinates to screen coordinates.
|
| + */
|
| + public void notifyFrameInfoInitialized();
|
| +}
|
|
|