| 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_FRAME_URLMON_URL_REQUEST_PRIVATE_H_ | 5 #ifndef CHROME_FRAME_URLMON_URL_REQUEST_PRIVATE_H_ |
| 6 #define CHROME_FRAME_URLMON_URL_REQUEST_PRIVATE_H_ | 6 #define CHROME_FRAME_URLMON_URL_REQUEST_PRIVATE_H_ |
| 7 | 7 |
| 8 #include <atlbase.h> | 8 #include <atlbase.h> |
| 9 #include <atlcom.h> | 9 #include <atlcom.h> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 private: | 235 private: |
| 236 Redirection redirect_; | 236 Redirection redirect_; |
| 237 State state_; | 237 State state_; |
| 238 URLRequestStatus result_; | 238 URLRequestStatus result_; |
| 239 }; | 239 }; |
| 240 | 240 |
| 241 Status status_; | 241 Status status_; |
| 242 ScopedComPtr<IBinding> binding_; | 242 ScopedComPtr<IBinding> binding_; |
| 243 ScopedComPtr<IMoniker> moniker_; | 243 ScopedComPtr<IMoniker> moniker_; |
| 244 ScopedComPtr<IBindCtx> bind_context_; | 244 ScopedComPtr<IBindCtx> bind_context_; |
| 245 scoped_refptr<RequestData> request_data_; | |
| 246 Cache cached_data_; | 245 Cache cached_data_; |
| 247 size_t pending_read_size_; | 246 size_t pending_read_size_; |
| 248 PlatformThreadId thread_; | 247 PlatformThreadId thread_; |
| 249 HWND parent_window_; | 248 HWND parent_window_; |
| 250 bool headers_received_; | 249 bool headers_received_; |
| 251 int calling_delegate_; // re-entrancy protection. | 250 int calling_delegate_; // re-entrancy protection. |
| 252 // Set to true if the ChromeFrame instance is running in privileged mode. | 251 // Set to true if the ChromeFrame instance is running in privileged mode. |
| 253 bool privileged_mode_; | 252 bool privileged_mode_; |
| 254 DISALLOW_COPY_AND_ASSIGN(UrlmonUrlRequest); | 253 DISALLOW_COPY_AND_ASSIGN(UrlmonUrlRequest); |
| 255 }; | 254 }; |
| 256 | 255 |
| 257 #endif // CHROME_FRAME_URLMON_URL_REQUEST_PRIVATE_H_ | 256 #endif // CHROME_FRAME_URLMON_URL_REQUEST_PRIVATE_H_ |
| OLD | NEW |