diff options
Diffstat (limited to 'content/child/child_thread.cc')
-rw-r--r-- | content/child/child_thread.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/child/child_thread.cc b/content/child/child_thread.cc index 5e77c404..55cef8f 100644 --- a/content/child/child_thread.cc +++ b/content/child/child_thread.cc @@ -120,7 +120,7 @@ class SuicideOnChannelErrorFilter : public IPC::MessageFilter { // forever and leave behind a renderer process which eats 100% CPU forever. // // This is because the terminate signals (ViewMsg_ShouldClose and the error - // from the IPC channel) are routed to the main message loop but never + // from the IPC sender) are routed to the main message loop but never // processed (because that message loop is stuck in V8). // // One could make the browser SIGKILL the renderers, but that leaves open a @@ -128,7 +128,7 @@ class SuicideOnChannelErrorFilter : public IPC::MessageFilter { // the browser because "it's stuck") will leave behind a process eating all // the CPU. // - // So, we install a filter on the channel so that we can process this event + // So, we install a filter on the sender so that we can process this event // here and kill the process. // TODO(earthdok): Re-enable on CrOS http://crbug.com/360622 #if (defined(ADDRESS_SANITIZER) || defined(LEAK_SANITIZER) || \ |