Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(528)

Side by Side Diff: content/public/android/java/src/org/chromium/content/browser/SelectionHandleController.java

Issue 10911012: Upstream Android IME support (ImeAdapter). (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: nits fixed; recent downstream changes applied; ime adapter added to browser_jni_registrar Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698