OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 #if defined(BROWSER_SYNC) | |
5 | 4 |
6 #ifndef CHROME_TEST_LIVE_SYNC_PROFILE_SYNC_SERVICE_TEST_HARNESS_H_ | 5 #ifndef CHROME_TEST_LIVE_SYNC_PROFILE_SYNC_SERVICE_TEST_HARNESS_H_ |
7 #define CHROME_TEST_LIVE_SYNC_PROFILE_SYNC_SERVICE_TEST_HARNESS_H_ | 6 #define CHROME_TEST_LIVE_SYNC_PROFILE_SYNC_SERVICE_TEST_HARNESS_H_ |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 | 9 |
11 #include "base/time.h" | 10 #include "base/time.h" |
12 #include "chrome/browser/sync/profile_sync_service.h" | 11 #include "chrome/browser/sync/profile_sync_service.h" |
13 | 12 |
14 class Profile; | 13 class Profile; |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 int64 min_updates_needed_; | 99 int64 min_updates_needed_; |
101 | 100 |
102 // Credentials used for GAIA authentication. | 101 // Credentials used for GAIA authentication. |
103 std::string username_; | 102 std::string username_; |
104 std::string password_; | 103 std::string password_; |
105 | 104 |
106 DISALLOW_COPY_AND_ASSIGN(ProfileSyncServiceTestHarness); | 105 DISALLOW_COPY_AND_ASSIGN(ProfileSyncServiceTestHarness); |
107 }; | 106 }; |
108 | 107 |
109 #endif // CHROME_TEST_SYNC_PROFILE_SYNC_SERVICE_TEST_HARNESS_H_ | 108 #endif // CHROME_TEST_SYNC_PROFILE_SYNC_SERVICE_TEST_HARNESS_H_ |
110 | |
111 #endif // defined(BROWSER_SYNC) | |
OLD | NEW |