fix oops

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2510 0039d316-1c4b-4281-b951-d872f2087c98


CrOS-Libchrome-Original-Commit: 4615f198872e6acfb8fdc40e26525f9e2ff98bbe
diff --git a/base/message_loop_unittest.cc b/base/message_loop_unittest.cc
index d899b96..62f2ae9 100644
--- a/base/message_loop_unittest.cc
+++ b/base/message_loop_unittest.cc
@@ -312,8 +312,8 @@
   EXPECT_EQ(0, num_tasks);
 
   // Ensure that we ran in far less time than the slower timer.
-  TimeDelta run_time = Time::Now() - start_time;
-  EXPECT_GT(5000, run_time.InMilliseconds());
+  TimeDelta total_time = Time::Now() - start_time;
+  EXPECT_GT(5000, total_time.InMilliseconds());
   
   // In case both timers somehow run at nearly the same time, sleep a little
   // and then run all pending to force them both to have run.  This is just
@@ -376,8 +376,8 @@
   EXPECT_EQ(1, num_tasks);
 
   // Ensure that we ran in far less time than the slower timer.
-  TimeDelta run_time = Time::Now() - start_time;
-  EXPECT_GT(5000, run_time.InMilliseconds());
+  TimeDelta total_time = Time::Now() - start_time;
+  EXPECT_GT(5000, total_time.InMilliseconds());
 
   // In case both timers somehow run at nearly the same time, sleep a little
   // and then run all pending to force them both to have run.  This is just