| OLD | NEW |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/sync/test/integration/sync_test.h" | 5 #include "chrome/browser/sync/test/integration/sync_test.h" |
| 6 | 6 |
| 7 class SingleClientE2ETest : public SyncTest { | 7 class SingleClientE2ETest : public SyncTest { |
| 8 public: | 8 public: |
| 9 SingleClientE2ETest() : SyncTest(SINGLE_CLIENT) {} | 9 SingleClientE2ETest() : SyncTest(SINGLE_CLIENT) {} |
| 10 ~SingleClientE2ETest() override {} | 10 ~SingleClientE2ETest() override {} |
| 11 virtual bool TestUsesSelfNotifications() override { return false; } | 11 virtual bool TestUsesSelfNotifications() override { return false; } |
| 12 | 12 |
| 13 private: | 13 private: |
| 14 DISALLOW_COPY_AND_ASSIGN(SingleClientE2ETest); | 14 DISALLOW_COPY_AND_ASSIGN(SingleClientE2ETest); |
| 15 }; | 15 }; |
| 16 | 16 |
| 17 // http://crbug.com/431366 |
| 17 IN_PROC_BROWSER_TEST_F(SingleClientE2ETest, DISABLED_SanitySetup) { | 18 IN_PROC_BROWSER_TEST_F(SingleClientE2ETest, DISABLED_SanitySetup) { |
| 18 ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; | 19 ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; |
| 19 // TODO(shadi): Add AwaitCommitActivityCompletion() once GCM servers are added | 20 // TODO(shadi): Add AwaitCommitActivityCompletion() once GCM servers are added |
| 20 // to E2E setup. | 21 // to E2E setup. |
| 21 // ASSERT_TRUE(AwaitCommitActivityCompletion(GetSyncService((0)))); | 22 // ASSERT_TRUE(AwaitCommitActivityCompletion(GetSyncService((0)))); |
| 22 } | 23 } |
| OLD | NEW |