OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 SYNC_TEST_ACCOUNTS_CLIENT_TEST_ACCOUNTS_CLIENT_H_ | 5 #ifndef SYNC_TEST_ACCOUNTS_CLIENT_TEST_ACCOUNTS_CLIENT_H_ |
6 #define SYNC_TEST_ACCOUNTS_CLIENT_TEST_ACCOUNTS_CLIENT_H_ | 6 #define SYNC_TEST_ACCOUNTS_CLIENT_TEST_ACCOUNTS_CLIENT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
12 #include "googleurl/src/gurl.h" | 12 #include "url/gurl.h" |
13 | 13 |
14 using std::string; | 14 using std::string; |
15 using std::vector; | 15 using std::vector; |
16 | 16 |
17 // The data associated with an account session. | 17 // The data associated with an account session. |
18 struct AccountSession { | 18 struct AccountSession { |
19 AccountSession(); | 19 AccountSession(); |
20 ~AccountSession(); | 20 ~AccountSession(); |
21 | 21 |
22 string username; | 22 string username; |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 private: | 55 private: |
56 GURL CreateGURLWithPath(const string& path); | 56 GURL CreateGURLWithPath(const string& path); |
57 base::MessageLoopForIO io_loop_; | 57 base::MessageLoopForIO io_loop_; |
58 const string server_; | 58 const string server_; |
59 const string account_space_; | 59 const string account_space_; |
60 vector<string> usernames_; | 60 vector<string> usernames_; |
61 }; | 61 }; |
62 | 62 |
63 #endif // SYNC_TEST_ACCOUNTS_CLIENT_TEST_ACCOUNTS_CLIENT_H_ | 63 #endif // SYNC_TEST_ACCOUNTS_CLIENT_TEST_ACCOUNTS_CLIENT_H_ |
OLD | NEW |