| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef CHROME_TEST_LIVE_SYNC_LIVE_AUTOFILL_SYNC_TEST_H_ | 5 #ifndef CHROME_TEST_LIVE_SYNC_LIVE_AUTOFILL_SYNC_TEST_H_ |
| 6 #define CHROME_TEST_LIVE_SYNC_LIVE_AUTOFILL_SYNC_TEST_H_ | 6 #define CHROME_TEST_LIVE_SYNC_LIVE_AUTOFILL_SYNC_TEST_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 80 |
| 81 private: | 81 private: |
| 82 DISALLOW_COPY_AND_ASSIGN(LiveAutofillSyncTest); | 82 DISALLOW_COPY_AND_ASSIGN(LiveAutofillSyncTest); |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 AutofillProfile CreateAutofillProfile(LiveAutofillSyncTest::ProfileType type); | 85 AutofillProfile CreateAutofillProfile(LiveAutofillSyncTest::ProfileType type); |
| 86 | 86 |
| 87 class TwoClientLiveAutofillSyncTest : public LiveAutofillSyncTest { | 87 class TwoClientLiveAutofillSyncTest : public LiveAutofillSyncTest { |
| 88 public: | 88 public: |
| 89 TwoClientLiveAutofillSyncTest() : LiveAutofillSyncTest(TWO_CLIENT) {} | 89 TwoClientLiveAutofillSyncTest() : LiveAutofillSyncTest(TWO_CLIENT) {} |
| 90 ~TwoClientLiveAutofillSyncTest() {} | 90 virtual ~TwoClientLiveAutofillSyncTest() {} |
| 91 | 91 |
| 92 private: | 92 private: |
| 93 DISALLOW_COPY_AND_ASSIGN(TwoClientLiveAutofillSyncTest); | 93 DISALLOW_COPY_AND_ASSIGN(TwoClientLiveAutofillSyncTest); |
| 94 }; | 94 }; |
| 95 | 95 |
| 96 #endif // CHROME_TEST_LIVE_SYNC_LIVE_AUTOFILL_SYNC_TEST_H_ | 96 #endif // CHROME_TEST_LIVE_SYNC_LIVE_AUTOFILL_SYNC_TEST_H_ |
| OLD | NEW |