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

Unified Diff: chrome/browser/chromeos/cros/input_method_library.cc

Issue 6216002: cleanup: Use the new libcros API StopInputMethodProcess() to terminate ibus-daemon instead of kill() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: style fix Created 9 years, 11 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
« no previous file with comments | « no previous file | tools/cros.DEPS/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/input_method_library.cc
diff --git a/chrome/browser/chromeos/cros/input_method_library.cc b/chrome/browser/chromeos/cros/input_method_library.cc
index c62c3fdc2248312154e14f60d0a584a958ef3bbd..861230a0f502eb16827fb30c61578d8697c7a9f7 100644
--- a/chrome/browser/chromeos/cros/input_method_library.cc
+++ b/chrome/browser/chromeos/cros/input_method_library.cc
@@ -578,11 +578,19 @@ class InputMethodLibraryImpl : public InputMethodLibrary,
// actually changes the XKB layout will not be called.
CrosLibrary::Get()->GetKeyboardLibrary()->SetCurrentKeyboardLayoutByName(
chromeos::input_method::GetKeyboardLayoutName(xkb_engine_name));
- kill(ibus_daemon_process_id_, SIGTERM);
+ if (!chromeos::StopInputMethodProcess(input_method_status_connection_)) {
+ LOG(ERROR) << "StopInputMethodProcess IPC failed. Sending SIGTERM to "
+ << "PID " << ibus_daemon_process_id_;
+ kill(ibus_daemon_process_id_, SIGTERM);
+ }
+ VLOG(1) << "ibus-daemon (PID=" << ibus_daemon_process_id_ << ") is "
+ << "terminated";
ibus_daemon_process_id_ = 0;
}
if (candidate_window_process_id_) {
kill(candidate_window_process_id_, SIGTERM);
+ VLOG(1) << "candidate_window (PID=" << candidate_window_process_id_
+ << ") is terminated";
candidate_window_process_id_ = 0;
}
}
« no previous file with comments | « no previous file | tools/cros.DEPS/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698