| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 PPAPI_PROXY_URL_LOADER_RESOURCE_H_ | 5 #ifndef PPAPI_PROXY_URL_LOADER_RESOURCE_H_ |
| 6 #define PPAPI_PROXY_URL_LOADER_RESOURCE_H_ | 6 #define PPAPI_PROXY_URL_LOADER_RESOURCE_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 | 136 |
| 137 // The response info if we've received it. | 137 // The response info if we've received it. |
| 138 scoped_refptr<URLResponseInfoResource> response_info_; | 138 scoped_refptr<URLResponseInfoResource> response_info_; |
| 139 | 139 |
| 140 DISALLOW_COPY_AND_ASSIGN(URLLoaderResource); | 140 DISALLOW_COPY_AND_ASSIGN(URLLoaderResource); |
| 141 }; | 141 }; |
| 142 | 142 |
| 143 } // namespace proxy | 143 } // namespace proxy |
| 144 } // namespace ppapi | 144 } // namespace ppapi |
| 145 | 145 |
| 146 #endif // PPAPI_PROXY_URL_LOADER_RESOURCE_H_ | 146 #endif // PPAPI_PROXY_URL_LOADER_RESOURCE_H_ |
| OLD | NEW |