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

Side by Side Diff: third_party/WebKit/Source/core/css/parser/CSSParserContext.h

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: rebase Created 3 years, 11 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 CSSParserContext_h 5 #ifndef CSSParserContext_h
6 #define CSSParserContext_h 6 #define CSSParserContext_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/css/parser/CSSParserMode.h" 9 #include "core/css/parser/CSSParserMode.h"
10 #include "core/fetch/ResourceLoaderOptions.h" 10 #include "platform/loader/fetch/ResourceLoaderOptions.h"
11 #include "platform/weborigin/KURL.h" 11 #include "platform/weborigin/KURL.h"
12 #include "platform/weborigin/Referrer.h" 12 #include "platform/weborigin/Referrer.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 class Document; 16 class Document;
17 class UseCounter; 17 class UseCounter;
18 18
19 class CORE_EXPORT CSSParserContext { 19 class CORE_EXPORT CSSParserContext {
20 USING_FAST_MALLOC(CSSParserContext); 20 USING_FAST_MALLOC(CSSParserContext);
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 ContentSecurityPolicyDisposition m_shouldCheckContentSecurityPolicy; 90 ContentSecurityPolicyDisposition m_shouldCheckContentSecurityPolicy;
91 91
92 UseCounter* m_useCounter; 92 UseCounter* m_useCounter;
93 }; 93 };
94 94
95 CORE_EXPORT const CSSParserContext& strictCSSParserContext(); 95 CORE_EXPORT const CSSParserContext& strictCSSParserContext();
96 96
97 } // namespace blink 97 } // namespace blink
98 98
99 #endif // CSSParserMode_h 99 #endif // CSSParserMode_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698