From the source code of rc_11(11.80927)
, it does has a interface Application::SetStartLink
to set the start URL, but the param has not been used at all, there is no way to change the url when switching from preloading state to kStateStarted for some special cases(eg. add url pairing parameters for dial):
//there doesn't use the link param(url) in StartApplication in cobalt/browser/main.cc
void StartApplication(int /*argc*/, char** /*argv*/, const char* /*link*/,
const base::Closure& quit_closure) {
if (!g_application) {
g_application = new cobalt::browser::Application(quit_closure,
false /*should_preload*/);
DCHECK(g_application);
} else {
g_application->Start(); -->does NOT use the url param
}
}