| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_PASSWORDS_SYNC_TEST_H_ | 5 #ifndef CHROME_TEST_LIVE_SYNC_LIVE_PASSWORDS_SYNC_TEST_H_ |
| 6 #define CHROME_TEST_LIVE_SYNC_LIVE_PASSWORDS_SYNC_TEST_H_ | 6 #define CHROME_TEST_LIVE_SYNC_LIVE_PASSWORDS_SYNC_TEST_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| 11 #include "chrome/browser/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
| 12 #include "chrome/browser/password_manager/password_store.h" | 12 #include "chrome/browser/password_manager/password_store.h" |
| 13 #include "chrome/test/live_sync/live_sync_test.h" | 13 #include "chrome/test/live_sync/live_sync_test.h" |
| 14 #include "chrome/test/ui_test_utils.h" | 14 #include "chrome/test/ui_test_utils.h" |
| 15 #include "chrome/test/signaling_task.h" | 15 #include "chrome/test/signaling_task.h" |
| 16 #include "webkit/glue/password_form.h" | 16 #include "webkit/glue/password_form.h" |
| 17 | 17 |
| 18 class LivePasswordsSyncTest : public LiveSyncTest { | 18 class LivePasswordsSyncTest : public LiveSyncTest { |
| 19 public: | 19 public: |
| 20 explicit LivePasswordsSyncTest(TestType test_type) | 20 explicit LivePasswordsSyncTest(TestType test_type) |
| 21 : LiveSyncTest(test_type) {} | 21 : LiveSyncTest(test_type) {} |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 class ManyClientLivePasswordsSyncTest : public LivePasswordsSyncTest { | 116 class ManyClientLivePasswordsSyncTest : public LivePasswordsSyncTest { |
| 117 public: | 117 public: |
| 118 ManyClientLivePasswordsSyncTest() : LivePasswordsSyncTest(MANY_CLIENT) {} | 118 ManyClientLivePasswordsSyncTest() : LivePasswordsSyncTest(MANY_CLIENT) {} |
| 119 virtual ~ManyClientLivePasswordsSyncTest() {} | 119 virtual ~ManyClientLivePasswordsSyncTest() {} |
| 120 | 120 |
| 121 private: | 121 private: |
| 122 DISALLOW_COPY_AND_ASSIGN(ManyClientLivePasswordsSyncTest); | 122 DISALLOW_COPY_AND_ASSIGN(ManyClientLivePasswordsSyncTest); |
| 123 }; | 123 }; |
| 124 | 124 |
| 125 #endif // CHROME_TEST_LIVE_SYNC_LIVE_PASSWORDS_SYNC_TEST_H_ | 125 #endif // CHROME_TEST_LIVE_SYNC_LIVE_PASSWORDS_SYNC_TEST_H_ |
| OLD | NEW |