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

Side by Side Diff: third_party/WebKit/Source/platform/network/ResourceResponse.h

Issue 1882003002: include RefCounted.h where needed, only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fix Created 4 years, 8 months 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) 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Google Inc. All rights reserved. 3 * Copyright (C) 2009 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 18 matching lines...) Expand all
29 29
30 #include "platform/PlatformExport.h" 30 #include "platform/PlatformExport.h"
31 #include "platform/blob/BlobData.h" 31 #include "platform/blob/BlobData.h"
32 #include "platform/network/HTTPHeaderMap.h" 32 #include "platform/network/HTTPHeaderMap.h"
33 #include "platform/network/HTTPParsers.h" 33 #include "platform/network/HTTPParsers.h"
34 #include "platform/network/ResourceLoadInfo.h" 34 #include "platform/network/ResourceLoadInfo.h"
35 #include "platform/network/ResourceLoadTiming.h" 35 #include "platform/network/ResourceLoadTiming.h"
36 #include "platform/weborigin/KURL.h" 36 #include "platform/weborigin/KURL.h"
37 #include "public/platform/modules/serviceworker/WebServiceWorkerResponseType.h" 37 #include "public/platform/modules/serviceworker/WebServiceWorkerResponseType.h"
38 #include "wtf/PassOwnPtr.h" 38 #include "wtf/PassOwnPtr.h"
39 #include "wtf/RefCounted.h"
39 #include "wtf/RefPtr.h" 40 #include "wtf/RefPtr.h"
40 #include "wtf/text/CString.h" 41 #include "wtf/text/CString.h"
41 42
42 namespace blink { 43 namespace blink {
43 44
44 struct CrossThreadResourceResponseData; 45 struct CrossThreadResourceResponseData;
45 46
46 class PLATFORM_EXPORT ResourceResponse final { 47 class PLATFORM_EXPORT ResourceResponse final {
47 DISALLOW_NEW_EXCEPT_PLACEMENT_NEW(); 48 DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
48 public: 49 public:
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 int64_t m_responseTime; 404 int64_t m_responseTime;
404 String m_remoteIPAddress; 405 String m_remoteIPAddress;
405 unsigned short m_remotePort; 406 unsigned short m_remotePort;
406 String m_downloadedFilePath; 407 String m_downloadedFilePath;
407 RefPtr<BlobDataHandle> m_downloadedFileHandle; 408 RefPtr<BlobDataHandle> m_downloadedFileHandle;
408 }; 409 };
409 410
410 } // namespace blink 411 } // namespace blink
411 412
412 #endif // ResourceResponse_h 413 #endif // ResourceResponse_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698