OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 | 4 |
5 #ifndef NET_FLIP_NETWORK_TRANSACTION_H_ | 5 #ifndef NET_FLIP_NETWORK_TRANSACTION_H_ |
6 #define NET_FLIP_NETWORK_TRANSACTION_H_ | 6 #define NET_FLIP_NETWORK_TRANSACTION_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <deque> | 9 #include <deque> |
10 | 10 |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 base::Time start_time_; | 133 base::Time start_time_; |
134 | 134 |
135 // The next state in the state machine. | 135 // The next state in the state machine. |
136 State next_state_; | 136 State next_state_; |
137 }; | 137 }; |
138 | 138 |
139 } // namespace net | 139 } // namespace net |
140 | 140 |
141 #endif // NET_HTTP_NETWORK_TRANSACTION_H_ | 141 #endif // NET_HTTP_NETWORK_TRANSACTION_H_ |
142 | 142 |
OLD | NEW |