| Index: base/debug/trace_event_win_unittest.cc
|
| diff --git a/base/debug/trace_event_win_unittest.cc b/base/debug/trace_event_win_unittest.cc
|
| index 8544bc77cae91dcf1356bd060a78724771ee5257..4c5ed452a3ca0e77f4c9f130f69c521ec4ef8535 100644
|
| --- a/base/debug/trace_event_win_unittest.cc
|
| +++ b/base/debug/trace_event_win_unittest.cc
|
| @@ -106,7 +106,7 @@ class TraceEventTest: public testing::Test {
|
| TraceLog* tracelog = NULL;
|
| if (!is_xp) {
|
| TraceLog::Resurrect();
|
| - tracelog = TraceLog::Get();
|
| + tracelog = TraceLog::GetInstance();
|
| ASSERT_TRUE(tracelog != NULL);
|
| ASSERT_FALSE(tracelog->IsTracing());
|
| }
|
| @@ -142,7 +142,7 @@ class TraceEventTest: public testing::Test {
|
|
|
| if (is_xp) {
|
| TraceLog::Resurrect();
|
| - tracelog = TraceLog::Get();
|
| + tracelog = TraceLog::GetInstance();
|
| }
|
| ASSERT_TRUE(tracelog != NULL);
|
| EXPECT_TRUE(tracelog->IsTracing());
|
|
|