summaryrefslogtreecommitdiffstats
path: root/content/child/request_extra_data.cc
blob: ba9789d6f49583beed257904b7a43006f662963c (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
34
35
36
37
38
39
40
41
42
43
44
45
// 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"

using blink::WebString;

namespace content {

RequestExtraData::RequestExtraData(
    blink::WebPageVisibilityState visibility_state,
    const WebString& custom_user_agent,
    bool was_after_preconnect_request,
    int render_frame_id,
    bool is_main_frame,
    const GURL& frame_origin,
    bool parent_is_main_frame,
    int parent_render_frame_id,
    bool allow_download,
    PageTransition transition_type,
    bool should_replace_current_entry,
    int transferred_request_child_id,
    int transferred_request_request_id,
    int service_worker_provider_id)
    : webkit_glue::WebURLRequestExtraDataImpl(custom_user_agent,
                                              was_after_preconnect_request),
      visibility_state_(visibility_state),
      render_frame_id_(render_frame_id),
      is_main_frame_(is_main_frame),
      frame_origin_(frame_origin),
      parent_is_main_frame_(parent_is_main_frame),
      parent_render_frame_id_(parent_render_frame_id),
      allow_download_(allow_download),
      transition_type_(transition_type),
      should_replace_current_entry_(should_replace_current_entry),
      transferred_request_child_id_(transferred_request_child_id),
      transferred_request_request_id_(transferred_request_request_id),
      service_worker_provider_id_(service_worker_provider_id) {
}

RequestExtraData::~RequestExtraData() {
}

}  // namespace content