summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorapatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-19 01:24:49 +0000
committerapatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-19 01:24:49 +0000
commite8ea65a9388cb27f21f90392a1fd46c7b6ae5cdb (patch)
treef0c468f2895bc820cf5746ddf14f38ada21d9b32
parentada42fcc462ba7711c21dc24340b003fc10b4fe0 (diff)
downloadchromium_src-e8ea65a9388cb27f21f90392a1fd46c7b6ae5cdb.zip
chromium_src-e8ea65a9388cb27f21f90392a1fd46c7b6ae5cdb.tar.gz
chromium_src-e8ea65a9388cb27f21f90392a1fd46c7b6ae5cdb.tar.bz2
Corrected GPU watchdog termination error message.
TEST=try BUG=none Review URL: http://codereview.chromium.org/6262006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71738 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/gpu/gpu_watchdog_thread.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/gpu/gpu_watchdog_thread.cc b/chrome/gpu/gpu_watchdog_thread.cc
index fb90ffe..889e017 100644
--- a/chrome/gpu/gpu_watchdog_thread.cc
+++ b/chrome/gpu/gpu_watchdog_thread.cc
@@ -217,8 +217,8 @@ void GpuWatchdogThread::OnExit() {
return;
#endif
- LOG(ERROR) << "The GPU process hung. Restarting after "
- << timeout_ << " seconds.";
+ LOG(ERROR) << "The GPU process hung. Terminating after "
+ << timeout_ << " ms.";
volatile int* null_pointer = NULL;
*null_pointer = timeout;