Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(271)

Side by Side Diff: Source/platform/network/ResourceRequest.h

Issue 71433002: Enable XHR upload progress events for Workers. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add missing doctype declaration Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
4 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. 4 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 KURL m_url; 248 KURL m_url;
249 249
250 ResourceRequestCachePolicy m_cachePolicy; 250 ResourceRequestCachePolicy m_cachePolicy;
251 double m_timeoutInterval; 251 double m_timeoutInterval;
252 KURL m_firstPartyForCookies; 252 KURL m_firstPartyForCookies;
253 253
254 String m_httpMethod; 254 String m_httpMethod;
255 OwnPtr<CrossThreadHTTPHeaderMapData> m_httpHeaders; 255 OwnPtr<CrossThreadHTTPHeaderMapData> m_httpHeaders;
256 RefPtr<FormData> m_httpBody; 256 RefPtr<FormData> m_httpBody;
257 bool m_allowCookies; 257 bool m_allowCookies;
258 bool m_reportUploadProgress;
258 bool m_hasUserGesture; 259 bool m_hasUserGesture;
259 bool m_downloadToFile; 260 bool m_downloadToFile;
260 ResourceLoadPriority m_priority; 261 ResourceLoadPriority m_priority;
261 int m_requestorID; 262 int m_requestorID;
262 int m_requestorProcessID; 263 int m_requestorProcessID;
263 int m_appCacheHostID; 264 int m_appCacheHostID;
264 ResourceRequest::TargetType m_targetType; 265 ResourceRequest::TargetType m_targetType;
265 }; 266 };
266 267
267 unsigned initializeMaximumHTTPConnectionCountPerHost(); 268 unsigned initializeMaximumHTTPConnectionCountPerHost();
268 269
269 } // namespace WebCore 270 } // namespace WebCore
270 271
271 #endif // ResourceRequest_h 272 #endif // ResourceRequest_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698