// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LOADER_HTTP_EQUIV_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_LOADER_HTTP_EQUIV_H_ #include "third_party/blink/renderer/platform/wtf/allocator/allocator.h" #include "third_party/blink/renderer/platform/wtf/text/atomic_string.h" namespace blink { class Document; class LocalDOMWindow; class Element; /** * Handles a HTTP header equivalent set by a meta tag using * <meta http-equiv="..." content="...">. This is called when a meta tag is * encountered during document parsing, and also when a script dynamically * changes or adds a meta tag. This enables scripts to use meta tags to perform * refreshes and set expiry dates in addition to them being specified in a HTML * file. */ class HttpEquiv { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_LOADER_HTTP_EQUIV_H_