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

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

Issue 1741653002: Update function names, Javadoc, comments in ImeUtils (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « content/public/android/java/src/org/chromium/content/browser/input/ImeUtils.java ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.content.browser.input; 5 package org.chromium.content.browser.input;
6 6
7 import android.os.Bundle; 7 import android.os.Bundle;
8 import android.os.Handler; 8 import android.os.Handler;
9 import android.os.Looper; 9 import android.os.Looper;
10 import android.view.KeyCharacterMap; 10 import android.view.KeyCharacterMap;
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 assertOnImeThread(); 551 assertOnImeThread();
552 return false; 552 return false;
553 } 553 }
554 554
555 /** 555 /**
556 * @see InputConnection#commitCorrection(android.view.inputmethod.Correction Info) 556 * @see InputConnection#commitCorrection(android.view.inputmethod.Correction Info)
557 */ 557 */
558 @Override 558 @Override
559 public boolean commitCorrection(CorrectionInfo correctionInfo) { 559 public boolean commitCorrection(CorrectionInfo correctionInfo) {
560 if (DEBUG_LOGS) { 560 if (DEBUG_LOGS) {
561 Log.w(TAG, "commitCorrection [%s]", ImeUtils.getCorrectInfoDebugStri ng(correctionInfo)); 561 Log.w(TAG, "commitCorrection [%s]",
562 ImeUtils.getCorrectionInfoDebugString(correctionInfo));
562 } 563 }
563 assertOnImeThread(); 564 assertOnImeThread();
564 return false; 565 return false;
565 } 566 }
566 567
567 /** 568 /**
568 * @see InputConnection#clearMetaKeyStates(int) 569 * @see InputConnection#clearMetaKeyStates(int)
569 */ 570 */
570 @Override 571 @Override
571 public boolean clearMetaKeyStates(int states) { 572 public boolean clearMetaKeyStates(int states) {
(...skipping 27 matching lines...) Expand all
599 /** 600 /**
600 * @see InputConnection#requestCursorUpdates(int) 601 * @see InputConnection#requestCursorUpdates(int)
601 */ 602 */
602 @Override 603 @Override
603 public boolean requestCursorUpdates(int cursorUpdateMode) { 604 public boolean requestCursorUpdates(int cursorUpdateMode) {
604 if (DEBUG_LOGS) Log.w(TAG, "requestCursorUpdates [%x]", cursorUpdateMode ); 605 if (DEBUG_LOGS) Log.w(TAG, "requestCursorUpdates [%x]", cursorUpdateMode );
605 assertOnImeThread(); 606 assertOnImeThread();
606 return false; 607 return false;
607 } 608 }
608 } 609 }
OLDNEW
« no previous file with comments | « content/public/android/java/src/org/chromium/content/browser/input/ImeUtils.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698