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

Side by Side Diff: third_party/WebKit/Source/platform/network/ResourceRequest.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) 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 21 matching lines...) Expand all
32 #include "platform/network/EncodedFormData.h" 32 #include "platform/network/EncodedFormData.h"
33 #include "platform/network/HTTPHeaderMap.h" 33 #include "platform/network/HTTPHeaderMap.h"
34 #include "platform/network/HTTPParsers.h" 34 #include "platform/network/HTTPParsers.h"
35 #include "platform/network/ResourceLoadPriority.h" 35 #include "platform/network/ResourceLoadPriority.h"
36 #include "platform/weborigin/KURL.h" 36 #include "platform/weborigin/KURL.h"
37 #include "platform/weborigin/Referrer.h" 37 #include "platform/weborigin/Referrer.h"
38 #include "platform/weborigin/SecurityOrigin.h" 38 #include "platform/weborigin/SecurityOrigin.h"
39 #include "public/platform/WebAddressSpace.h" 39 #include "public/platform/WebAddressSpace.h"
40 #include "public/platform/WebURLRequest.h" 40 #include "public/platform/WebURLRequest.h"
41 #include "wtf/OwnPtr.h" 41 #include "wtf/OwnPtr.h"
42 #include "wtf/RefCounted.h"
42 43
43 namespace blink { 44 namespace blink {
44 45
45 enum class WebCachePolicy; 46 enum class WebCachePolicy;
46 47
47 enum ResourceRequestBlockedReason { 48 enum ResourceRequestBlockedReason {
48 ResourceRequestBlockedReasonCSP, 49 ResourceRequestBlockedReasonCSP,
49 ResourceRequestBlockedReasonMixedContent, 50 ResourceRequestBlockedReasonMixedContent,
50 ResourceRequestBlockedReasonOrigin, 51 ResourceRequestBlockedReasonOrigin,
51 ResourceRequestBlockedReasonInspector, 52 ResourceRequestBlockedReasonInspector,
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 bool m_checkForBrowserSideNavigation; 330 bool m_checkForBrowserSideNavigation;
330 double m_uiStartTime; 331 double m_uiStartTime;
331 bool m_isExternalRequest; 332 bool m_isExternalRequest;
332 InputToLoadPerfMetricReportPolicy m_inputPerfMetricReportPolicy; 333 InputToLoadPerfMetricReportPolicy m_inputPerfMetricReportPolicy;
333 bool m_followedRedirect; 334 bool m_followedRedirect;
334 }; 335 };
335 336
336 } // namespace blink 337 } // namespace blink
337 338
338 #endif // ResourceRequest_h 339 #endif // ResourceRequest_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698