Index: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
index 60db709fdf5980974ea172e8721c994d08c8b0ac..a380c07cf2bc12de55c247cb8c7248dd3df048f4 100644 |
--- a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
+++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
@@ -2192,11 +2192,11 @@ public class ContentViewCore implements |
return mHasSelection; |
} |
- /** |
+ /** |
* @return Whether the page has an active, touch-controlled insertion handle. |
*/ |
@VisibleForTesting |
- protected boolean hasInsertion() { |
+ public boolean hasInsertion() { |
return mHasInsertion; |
} |
@@ -2283,8 +2283,6 @@ public class ContentViewCore implements |
} |
private void dismissTextHandles() { |
- mHasSelection = false; |
- mHasInsertion = false; |
if (mNativeContentViewCore != 0) nativeDismissTextHandles(mNativeContentViewCore); |
} |