Make ContentViewCore.hideSelectActionBar public.

Internal code gets around this by calling ContentView.hideSelectActionBar.
Remove the hop as the ContentView variant is going away.
BUG=360664
R=dtrainor@chromium.org

Review URL: https://codereview.chromium.org/232963004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263099 0039d316-1c4b-4281-b951-d872f2087c98
parent bda135fc
......@@ -432,7 +432,7 @@ public class ContentViewCore
// a focused element.
// Every time the user, IME, javascript (Blink), autofill etc. modifies the content, the new
// state must be reflected to this to keep consistency.
private Editable mEditable;
private final Editable mEditable;
/**
* PID used to indicate an invalid render process.
......@@ -1472,7 +1472,7 @@ public class ContentViewCore
hideSelectActionBar();
}
void hideSelectActionBar() {
public void hideSelectActionBar() {
if (mActionMode != null) {
mActionMode.finish();
mActionMode = null;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment