Home | History | Annotate | Download | only in npapi

Lines Matching refs:request_info

17 #include "content/child/request_info.h"
108 RequestInfo request_info;
109 request_info.method = method;
110 request_info.url = url;
111 request_info.first_party_for_cookies = first_party_for_cookies;
112 request_info.referrer = referrer;
113 request_info.load_flags = net::LOAD_NORMAL;
114 request_info.requestor_pid = origin_pid;
115 request_info.request_type = RESOURCE_TYPE_OBJECT;
116 request_info.routing_id = render_view_id;
121 request_info.extra_data = &extra_data;
130 if (!request_info.headers.empty())
131 request_info.headers += "\r\n";
132 request_info.headers += names[i] + ": " + values[i];
138 if (!request_info.headers.empty())
139 request_info.headers += "\r\n";
140 request_info.headers += "Content-Type: application/x-www-form-urlencoded";
144 request_info.headers = std::string("Range: ") + range;
148 request_info));