Skip to content

Commit b32a4a9

Browse files
authored
To prevent multiple instances of mozc_renderer from launching. (#916)
#912 Amending commit 0225743 PiperOrigin-RevId: 622703943
1 parent 548e7c3 commit b32a4a9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/renderer/renderer_client.cc

+4-1
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,11 @@ class RendererLauncher : public RendererLauncherInterface {
106106
const std::string &name, const std::string &path,
107107
bool disable_renderer_path_check,
108108
IPCClientFactoryInterface *ipc_client_factory_interface) override {
109-
if (Status() == RendererStatus::RENDERER_LAUNCHING) {
109+
if (Status() == RendererStatus::RENDERER_LAUNCHING ||
110+
Status() == RendererStatus::RENDERER_READY ||
111+
Status() == RendererStatus::RENDERER_TIMEOUT) {
110112
// Renderer is already launching.
113+
// The renderer is still up and running when in the pending command state.
111114
return;
112115
}
113116
SetStatus(RendererStatus::RENDERER_LAUNCHING);

0 commit comments

Comments
 (0)