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

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: review 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 | no next file » | 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..72960f10a3077be0c9f63559748c50846ed2cfd4 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);
+ }
+ LOG(INFO) << "ibus-daemon (PID=" << ibus_daemon_process_id_ << ") is "
satorux1 2011/01/11 07:02:30 Use of LOG(INFO) is discouraged. VLOG(1) would be
Yusuke Sato 2011/01/11 07:51:01 Done.
+ << "terminated";
ibus_daemon_process_id_ = 0;
}
if (candidate_window_process_id_) {
kill(candidate_window_process_id_, SIGTERM);
+ LOG(INFO) << "candidate_window (PID=" << candidate_window_process_id_
satorux1 2011/01/11 07:02:30 ditto
Yusuke Sato 2011/01/11 07:51:01 Done.
+ << ") is terminated";
candidate_window_process_id_ = 0;
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698