| Index: chrome/browser/sync/engine/verify_updates_command_unittest.cc
|
| diff --git a/chrome/browser/sync/engine/verify_updates_command_unittest.cc b/chrome/browser/sync/engine/verify_updates_command_unittest.cc
|
| index 0c27b99841d74aa4452863d0b9a9ed4c934733c2..6273d558e2e6af789c1cedebdb33c50510ad67f5 100644
|
| --- a/chrome/browser/sync/engine/verify_updates_command_unittest.cc
|
| +++ b/chrome/browser/sync/engine/verify_updates_command_unittest.cc
|
| @@ -1,7 +1,8 @@
|
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "base/tracked.h"
|
| #include "chrome/browser/sync/engine/verify_updates_command.h"
|
| #include "chrome/browser/sync/protocol/bookmark_specifics.pb.h"
|
| #include "chrome/browser/sync/sessions/sync_session.h"
|
| @@ -43,7 +44,7 @@ class VerifyUpdatesCommandTest : public SyncerCommandTest {
|
| const syncable::ModelType& type) {
|
| ScopedDirLookup dir(syncdb()->manager(), syncdb()->name());
|
| ASSERT_TRUE(dir.good());
|
| - WriteTransaction trans(dir, UNITTEST, __FILE__, __LINE__);
|
| + WriteTransaction trans(dir, UNITTEST, FROM_HERE);
|
| MutableEntry entry(&trans, syncable::CREATE_NEW_UPDATE_ITEM,
|
| Id::CreateFromServerId(item_id));
|
| ASSERT_TRUE(entry.good());
|
|
|