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

Side by Side Diff: third_party/WebKit/Source/core/loader/HttpEquiv.cpp

Issue 2700073002: core/loader: create private directory to store private classes (Closed)
Patch Set: Created 3 years, 10 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "core/loader/HttpEquiv.h" 5 #include "core/loader/HttpEquiv.h"
6 6
7 #include "core/dom/Document.h" 7 #include "core/dom/Document.h"
8 #include "core/dom/ScriptableDocumentParser.h" 8 #include "core/dom/ScriptableDocumentParser.h"
9 #include "core/dom/StyleEngine.h" 9 #include "core/dom/StyleEngine.h"
10 #include "core/frame/LocalFrame.h" 10 #include "core/frame/LocalFrame.h"
11 #include "core/frame/UseCounter.h" 11 #include "core/frame/UseCounter.h"
12 #include "core/frame/csp/ContentSecurityPolicy.h" 12 #include "core/frame/csp/ContentSecurityPolicy.h"
13 #include "core/inspector/ConsoleMessage.h" 13 #include "core/inspector/ConsoleMessage.h"
14 #include "core/loader/DocumentLoader.h" 14 #include "core/loader/DocumentLoader.h"
15 #include "core/loader/FrameClientHintsPreferencesContext.h" 15 #include "core/loader/private/FrameClientHintsPreferencesContext.h"
16 #include "core/origin_trials/OriginTrialContext.h" 16 #include "core/origin_trials/OriginTrialContext.h"
17 #include "platform/HTTPNames.h" 17 #include "platform/HTTPNames.h"
18 #include "platform/loader/fetch/ClientHintsPreferences.h" 18 #include "platform/loader/fetch/ClientHintsPreferences.h"
19 #include "platform/network/HTTPParsers.h" 19 #include "platform/network/HTTPParsers.h"
20 #include "platform/weborigin/KURL.h" 20 #include "platform/weborigin/KURL.h"
21 21
22 namespace blink { 22 namespace blink {
23 23
24 void HttpEquiv::process(Document& document, 24 void HttpEquiv::process(Document& document,
25 const AtomicString& equiv, 25 const AtomicString& equiv,
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 ContentSecurityPolicy::SuppressReport)) { 127 ContentSecurityPolicy::SuppressReport)) {
128 UseCounter::count(document, 128 UseCounter::count(document,
129 UseCounter::MetaSetCookieWhenCSPBlocksInlineScript); 129 UseCounter::MetaSetCookieWhenCSPBlocksInlineScript);
130 } 130 }
131 131
132 // Exception (for sandboxed documents) ignored. 132 // Exception (for sandboxed documents) ignored.
133 document.setCookie(content, IGNORE_EXCEPTION_FOR_TESTING); 133 document.setCookie(content, IGNORE_EXCEPTION_FOR_TESTING);
134 } 134 }
135 135
136 } // namespace blink 136 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/FrameFetchContext.cpp ('k') | third_party/WebKit/Source/core/loader/LinkLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698