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

Side by Side Diff: third_party/WebKit/Source/core/frame/csp/CSPSource.h

Issue 2746113002: platform/loader: move network/Resource* to loader/fetch (Closed)
Patch Set: git rebase master Created 3 years, 9 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CSPSource_h 5 #ifndef CSPSource_h
6 #define CSPSource_h 6 #define CSPSource_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/frame/csp/ContentSecurityPolicy.h" 9 #include "core/frame/csp/ContentSecurityPolicy.h"
10 #include "platform/heap/Handle.h" 10 #include "platform/heap/Handle.h"
11 #include "platform/network/ResourceRequest.h" 11 #include "platform/loader/fetch/ResourceRequest.h"
12 #include "public/platform/WebContentSecurityPolicyStruct.h" 12 #include "public/platform/WebContentSecurityPolicyStruct.h"
13 #include "wtf/Allocator.h" 13 #include "wtf/Allocator.h"
14 #include "wtf/text/WTFString.h" 14 #include "wtf/text/WTFString.h"
15 15
16 namespace blink { 16 namespace blink {
17 17
18 class ContentSecurityPolicy; 18 class ContentSecurityPolicy;
19 class KURL; 19 class KURL;
20 20
21 class CORE_EXPORT CSPSource : public GarbageCollectedFinalized<CSPSource> { 21 class CORE_EXPORT CSPSource : public GarbageCollectedFinalized<CSPSource> {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 int m_port; 107 int m_port;
108 String m_path; 108 String m_path;
109 109
110 WildcardDisposition m_hostWildcard; 110 WildcardDisposition m_hostWildcard;
111 WildcardDisposition m_portWildcard; 111 WildcardDisposition m_portWildcard;
112 }; 112 };
113 113
114 } // namespace blink 114 } // namespace blink
115 115
116 #endif 116 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698