Chromium Code Reviews| Index: chrome/browser/sync/test/integration/enable_disable_test.cc |
| diff --git a/chrome/browser/sync/test/integration/enable_disable_test.cc b/chrome/browser/sync/test/integration/enable_disable_test.cc |
| index 09150564eab398bb1e877147241a15b8c775b309..8f0d4130ee5c1e4097aa78116ff93c674081b445 100644 |
| --- a/chrome/browser/sync/test/integration/enable_disable_test.cc |
| +++ b/chrome/browser/sync/test/integration/enable_disable_test.cc |
| @@ -54,6 +54,8 @@ IN_PROC_BROWSER_TEST_F(EnableDisableSingleClientTest, EnableOneAtATime) { |
| syncer::UserShare* user_share = GetClient(0)->service()->GetUserShare(); |
| for (syncer::ModelTypeSet::Iterator it = registered_types.First(); |
| it.Good(); it.Inc()) { |
| + if (syncer::LocalTypes().Has(it.Get())) |
|
tim (not reviewing)
2013/01/18 20:56:33
Shouldn't we also cover enabling virtual types?
Nicolas Zea
2013/01/19 00:03:13
Hmm, yeah. Should probably just special case tabs
|
| + continue; |
| ASSERT_TRUE(GetClient(0)->EnableSyncForDatatype(it.Get())); |
| // AUTOFILL_PROFILE is lumped together with AUTOFILL. |