// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_RENDERER_DOCUMENT_STATE_H_ #define CONTENT_RENDERER_DOCUMENT_STATE_H_ #include <memory> #include "content/common/content_export.h" #include "net/http/http_response_info.h" #include "third_party/blink/public/web/web_document_loader.h" #include "url/gurl.h" namespace content { class NavigationState; // RenderFrameImpl stores an instance of this class in the "extra data" of each // WebDocumentLoader. class CONTENT_EXPORT DocumentState : public blink::WebDocumentLoader::ExtraData { … }; } // namespace content #endif // CONTENT_RENDERER_DOCUMENT_STATE_H_