HomeSort by relevance Sort by last modified time
    Searched refs:response_info (Results 1 - 21 of 21) sorted by null

  /external/chromium/net/tools/fetch/
http_session.cc 27 HttpServerResponseInfo response_info; local
28 response_info.protocol = "HTTP/1.1";
29 response_info.status = 200;
30 response_info.content_type = "text/plain";
31 response_info.content_length = data.length();
33 connection->Respond(&response_info, data);
  /external/chromium/net/websockets/
websocket_handshake_handler_unittest.cc 230 HttpResponseInfo response_info; local
231 response_info.headers = new HttpResponseHeaders(raw_headers);
233 EXPECT_TRUE(StartsWithASCII(response_info.headers->GetStatusLine(),
235 EXPECT_FALSE(response_info.headers->HasHeader("Upgrade"));
236 EXPECT_FALSE(response_info.headers->HasHeader("Connection"));
237 EXPECT_TRUE(response_info.headers->HasHeaderValue("Sec-WebSocket-Origin",
239 EXPECT_TRUE(response_info.headers->HasHeaderValue("Sec-WebSocket-Location",
241 EXPECT_TRUE(response_info.headers->HasHeaderValue("Sec-WebSocket-Protocol",
245 EXPECT_TRUE(response_handler.ParseResponseInfo(response_info, challenge));
websocket_handshake_handler.h 87 bool ParseResponseInfo(const HttpResponseInfo& response_info,