| Index: content/browser/child_process_launcher.cc
|
| diff --git a/content/browser/child_process_launcher.cc b/content/browser/child_process_launcher.cc
|
| index 262e6a8ac90ea0c0e6b4097dd90b0f32382257b6..d7b8aa9a0978a7cbce51e14592998e642d56e386 100644
|
| --- a/content/browser/child_process_launcher.cc
|
| +++ b/content/browser/child_process_launcher.cc
|
| @@ -78,11 +78,9 @@ void OnChildProcessStartedAndroid(const NotifyCallback& callback,
|
| const base::TimeTicks begin_launch_time,
|
| base::ScopedFD ipcfd,
|
| base::ProcessHandle handle) {
|
| - // This can be called on the launcher thread or UI thread.
|
| + // This will be called on the launcher thread.
|
| base::TimeDelta launch_time = base::TimeTicks::Now() - begin_launch_time;
|
| - BrowserThread::PostTask(
|
| - BrowserThread::PROCESS_LAUNCHER, FROM_HERE,
|
| - base::Bind(&RecordHistogramsOnLauncherThread, launch_time));
|
| + RecordHistogramsOnLauncherThread(launch_time);
|
|
|
| base::Closure callback_on_client_thread(
|
| base::Bind(callback, false, base::Passed(&ipcfd),
|
|
|