diff options
Diffstat (limited to 'content/child/request_extra_data.h')
-rw-r--r-- | content/child/request_extra_data.h | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/content/child/request_extra_data.h b/content/child/request_extra_data.h new file mode 100644 index 0000000..5b890e6 --- /dev/null +++ b/content/child/request_extra_data.h @@ -0,0 +1,60 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CONTENT_CHILD_REQUEST_EXTRA_DATA_H_ +#define CONTENT_CHILD_REQUEST_EXTRA_DATA_H_ + +#include "base/compiler_specific.h" +#include "content/common/content_export.h" +#include "content/public/common/page_transition_types.h" +#include "webkit/glue/weburlrequest_extradata_impl.h" + +namespace content { + +// The RenderView stores an instance of this class in the "extra data" of each +// ResourceRequest (see RenderView::willSendRequest). +class CONTENT_EXPORT RequestExtraData + : NON_EXPORTED_BASE(public webkit_glue::WebURLRequestExtraDataImpl) { + public: + RequestExtraData(WebKit::WebReferrerPolicy referrer_policy, + const WebKit::WebString& custom_user_agent, + bool is_main_frame, + int64 frame_id, + bool parent_is_main_frame, + int64 parent_frame_id, + bool allow_download, + PageTransition transition_type, + int transferred_request_child_id, + int transferred_request_request_id); + virtual ~RequestExtraData(); + + bool is_main_frame() const { return is_main_frame_; } + int64 frame_id() const { return frame_id_; } + bool parent_is_main_frame() const { return parent_is_main_frame_; } + int64 parent_frame_id() const { return parent_frame_id_; } + bool allow_download() const { return allow_download_; } + PageTransition transition_type() const { return transition_type_; } + int transferred_request_child_id() const { + return transferred_request_child_id_; + } + int transferred_request_request_id() const { + return transferred_request_request_id_; + } + + private: + bool is_main_frame_; + int64 frame_id_; + bool parent_is_main_frame_; + int64 parent_frame_id_; + bool allow_download_; + PageTransition transition_type_; + int transferred_request_child_id_; + int transferred_request_request_id_; + + DISALLOW_COPY_AND_ASSIGN(RequestExtraData); +}; + +} // namespace content + +#endif // CONTENT_CHILD_REQUEST_EXTRA_DATA_H_ |