blob: b26120bcabc090274d58b3984be567129f07d3db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// 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.
#include "content/child/request_extra_data.h"
#include "content/common/service_worker/service_worker_types.h"
#include "ipc/ipc_message.h"
using blink::WebString;
namespace content {
RequestExtraData::RequestExtraData()
: visibility_state_(blink::WebPageVisibilityStateVisible),
render_frame_id_(MSG_ROUTING_NONE),
is_main_frame_(false),
parent_is_main_frame_(false),
parent_render_frame_id_(-1),
allow_download_(true),
transition_type_(ui::PAGE_TRANSITION_LINK),
should_replace_current_entry_(false),
transferred_request_child_id_(-1),
transferred_request_request_id_(-1),
service_worker_provider_id_(kInvalidServiceWorkerProviderId),
originated_from_service_worker_(false),
lofi_state_(LOFI_UNSPECIFIED) {
}
RequestExtraData::~RequestExtraData() {
}
} // namespace content
|