| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 package org.chromium.content.browser; |
| 6 |
| 7 import android.view.View; |
| 8 |
| 9 class SelectionHandleController { |
| 10 |
| 11 private View mParent; |
| 12 |
| 13 SelectionHandleController(View parent) { |
| 14 mParent = parent; |
| 15 } |
| 16 |
| 17 /** Hide selection anchors, and don't automatically show them. */ |
| 18 public void hideAndDisallowAutomaticShowing() { |
| 19 // TODO(olilan): add method implementation (this is just a stub for ImeA
dapter). |
| 20 } |
| 21 } |
| OLD | NEW |