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

Side by Side Diff: Source/core/frame/csp/ContentSecurityPolicy.h

Issue 584273002: Clean up forward declarations in Source/core/frame (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « Source/core/frame/csp/CSPDirective.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google, Inc. All rights reserved. 2 * Copyright (C) 2011 Google, Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 namespace WTF { 44 namespace WTF {
45 class OrdinalNumber; 45 class OrdinalNumber;
46 } 46 }
47 47
48 namespace blink { 48 namespace blink {
49 49
50 class ContentSecurityPolicyResponseHeaders; 50 class ContentSecurityPolicyResponseHeaders;
51 class ConsoleMessage; 51 class ConsoleMessage;
52 class CSPDirectiveList; 52 class CSPDirectiveList;
53 class CSPSource; 53 class CSPSource;
54 class DOMStringList;
55 class Document; 54 class Document;
56 class JSONObject;
57 class KURL; 55 class KURL;
58 class SecurityOrigin; 56 class SecurityOrigin;
59 57
60 typedef int SandboxFlags; 58 typedef int SandboxFlags;
61 typedef Vector<OwnPtr<CSPDirectiveList> > CSPDirectiveListVector; 59 typedef Vector<OwnPtr<CSPDirectiveList> > CSPDirectiveListVector;
62 typedef WillBePersistentHeapVector<RefPtrWillBeMember<ConsoleMessage> > ConsoleM essageVector; 60 typedef WillBePersistentHeapVector<RefPtrWillBeMember<ConsoleMessage> > ConsoleM essageVector;
63 61
64 class ContentSecurityPolicy : public RefCounted<ContentSecurityPolicy> { 62 class ContentSecurityPolicy : public RefCounted<ContentSecurityPolicy> {
65 WTF_MAKE_FAST_ALLOCATED; 63 WTF_MAKE_FAST_ALLOCATED;
66 public: 64 public:
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 SandboxFlags m_sandboxMask; 222 SandboxFlags m_sandboxMask;
225 ReferrerPolicy m_referrerPolicy; 223 ReferrerPolicy m_referrerPolicy;
226 String m_disableEvalErrorMessage; 224 String m_disableEvalErrorMessage;
227 225
228 OwnPtr<CSPSource> m_selfSource; 226 OwnPtr<CSPSource> m_selfSource;
229 }; 227 };
230 228
231 } 229 }
232 230
233 #endif 231 #endif
OLDNEW
« no previous file with comments | « Source/core/frame/csp/CSPDirective.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698