Summary: Chromium EFL
# Version: {TPK_VERSION}.{INTERNAL_API_REVISION}.{CHROMIUM_MAJOR_VERSION}
# The {INTERNAL_API_REVISION} is used for compatibility check with wrtjs.
-Version: 1.1.94
+Version: 1.2.94
# Set by ./tizen_src/scripts/update_chromium_version.sh
%define upstream_chromium_version 94.0.4606.31
Release: 1
break;
}
} while (!command_queue.empty());
- return true;
+
+ message_queue_timer = 0;
+ return G_SOURCE_REMOVE;
}
void ChildCreated() {
wrt_ipc->SendMessage(command_key.c_str(), command_value.c_str());
} else {
command_queue.push(std::make_pair(command_key, command_value));
+ if (!message_queue_timer)
+ message_queue_timer = g_timeout_add_seconds(1, HandleCommandQueue, nullptr);
}
}
if (!child_created)
StartProcess(static_cast<char*>(data));
- message_queue_timer = g_timeout_add_seconds(1, HandleCommandQueue, nullptr);
return true;
}
LOG(INFO) << "wrt-service will be terminated.";
ChildTerminated(0);
- if (message_queue_timer)
+ if (message_queue_timer) {
g_source_remove(message_queue_timer);
+ message_queue_timer = 0;
+ }
}
} // namespace