| Index: chrome/browser/sync/syncable/syncable.cc
|
| diff --git a/chrome/browser/sync/syncable/syncable.cc b/chrome/browser/sync/syncable/syncable.cc
|
| index b7277c65e8e0046617bec5080dba51863c763e1f..949b712006dab88b4038340b3cae1634a0c3d581 100644
|
| --- a/chrome/browser/sync/syncable/syncable.cc
|
| +++ b/chrome/browser/sync/syncable/syncable.cc
|
| @@ -45,16 +45,17 @@
|
| #include "net/base/escape.h"
|
|
|
| namespace {
|
| +
|
| enum InvariantCheckLevel {
|
| OFF = 0,
|
| VERIFY_IN_MEMORY = 1,
|
| FULL_DB_VERIFICATION = 2
|
| };
|
|
|
| -static const InvariantCheckLevel kInvariantCheckLevel = VERIFY_IN_MEMORY;
|
| +const InvariantCheckLevel kInvariantCheckLevel = VERIFY_IN_MEMORY;
|
|
|
| // Max number of milliseconds to spend checking syncable entry invariants
|
| -static const int kInvariantCheckMaxMs = 50;
|
| +const int kInvariantCheckMaxMs = 50;
|
|
|
| // This function checks to see if the given list of Metahandles has any nodes
|
| // whose PREV_ID, PARENT_ID or NEXT_ID values refer to ID values that do not
|
|
|