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

Unified Diff: ui/base/ime/input_method_base.cc

Issue 1391893003: NOT FOR REVIEW: Aura on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: ui/base/ime/input_method_base.cc
diff --git a/ui/base/ime/input_method_base.cc b/ui/base/ime/input_method_base.cc
index 3441f928b90ac43904356b406a51997ea0d60ffa..6cd3cca7c6f14b94015350579ec6bf4c98d053a9 100644
--- a/ui/base/ime/input_method_base.cc
+++ b/ui/base/ime/input_method_base.cc
@@ -53,6 +53,7 @@ TextInputClient* InputMethodBase::GetTextInputClient() const {
}
void InputMethodBase::OnTextInputTypeChanged(const TextInputClient* client) {
+ LOG(ERROR) << "auraclank: InputMethodBase::OnTextInputTypeChanged";
if (!IsTextInputClientFocused(client))
return;
NotifyTextInputStateChanged(client);
@@ -114,6 +115,7 @@ ui::EventDispatchDetails InputMethodBase::DispatchKeyEventPostIME(
void InputMethodBase::NotifyTextInputStateChanged(
const TextInputClient* client) {
+ LOG(ERROR) << "auraclank: InputMethodBase::NotifyTextInputStateChanged";
FOR_EACH_OBSERVER(InputMethodObserver,
observer_list_,
OnTextInputStateChanged(client));
@@ -128,6 +130,8 @@ void InputMethodBase::NotifyTextInputCaretBoundsChanged(
void InputMethodBase::SetFocusedTextInputClientInternal(
TextInputClient* client) {
TextInputClient* old = text_input_client_;
+ LOG(ERROR) << "auraclank: InputMethodBase::SetFocusedTextInputClientInternal"
+ << ", old=" << old << ", client=" << client;
if (old == client)
return;
OnWillChangeFocusedClient(old, client);

Powered by Google App Engine
This is Rietveld 408576698