blob: 0b3d30a2fc09820732ada1b35df0093ea8685cd4 [file] [log] [blame]
// 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/child/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 was_after_preconnect_request,
bool is_main_frame,
int64 frame_id,
const GURL& frame_origin,
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_; }
GURL frame_origin() const { return frame_origin_; }
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_;
GURL frame_origin_;
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_