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

Side by Side Diff: third_party/WebKit/Source/platform/loader/fetch/ResourceRequest.h

Issue 2797983002: Rewrite references to "wtf/" to "platform/wtf/" in platform/loader. (Closed)
Patch Set: Created 3 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 19 matching lines...) Expand all
30 30
31 #include <memory> 31 #include <memory>
32 #include "platform/HTTPNames.h" 32 #include "platform/HTTPNames.h"
33 #include "platform/loader/fetch/ResourceLoadPriority.h" 33 #include "platform/loader/fetch/ResourceLoadPriority.h"
34 #include "platform/network/EncodedFormData.h" 34 #include "platform/network/EncodedFormData.h"
35 #include "platform/network/HTTPHeaderMap.h" 35 #include "platform/network/HTTPHeaderMap.h"
36 #include "platform/network/HTTPParsers.h" 36 #include "platform/network/HTTPParsers.h"
37 #include "platform/weborigin/KURL.h" 37 #include "platform/weborigin/KURL.h"
38 #include "platform/weborigin/Referrer.h" 38 #include "platform/weborigin/Referrer.h"
39 #include "platform/weborigin/SecurityOrigin.h" 39 #include "platform/weborigin/SecurityOrigin.h"
40 #include "platform/wtf/RefCounted.h"
40 #include "public/platform/WebAddressSpace.h" 41 #include "public/platform/WebAddressSpace.h"
41 #include "public/platform/WebURLRequest.h" 42 #include "public/platform/WebURLRequest.h"
42 #include "wtf/RefCounted.h"
43 43
44 namespace blink { 44 namespace blink {
45 45
46 enum class WebCachePolicy; 46 enum class WebCachePolicy;
47 47
48 enum class ResourceRequestBlockedReason { 48 enum class ResourceRequestBlockedReason {
49 CSP, 49 CSP,
50 MixedContent, 50 MixedContent,
51 Origin, 51 Origin,
52 Inspector, 52 Inspector,
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 bool m_checkForBrowserSideNavigation; 408 bool m_checkForBrowserSideNavigation;
409 double m_uiStartTime; 409 double m_uiStartTime;
410 bool m_isExternalRequest; 410 bool m_isExternalRequest;
411 InputToLoadPerfMetricReportPolicy m_inputPerfMetricReportPolicy; 411 InputToLoadPerfMetricReportPolicy m_inputPerfMetricReportPolicy;
412 ResourceRequest::RedirectStatus m_redirectStatus; 412 ResourceRequest::RedirectStatus m_redirectStatus;
413 }; 413 };
414 414
415 } // namespace blink 415 } // namespace blink
416 416
417 #endif // ResourceRequest_h 417 #endif // ResourceRequest_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698