Home | History | Annotate | Download | only in extensions

Lines Matching refs:url

44   if (request->url().scheme() != "http" ||
45 request->url().host() != "localhost") {
53 // Search for this request's url, ignoring any query parameters.
54 GURL url = request->url();
55 if (url.has_query()) {
58 url = url.ReplaceComponents(replacements);
60 std::map<GURL, FilePath>::iterator i = responses_.find(url);
71 void AutoUpdateInterceptor::SetResponse(const std::string url,
77 GURL gurl(url);
85 void AutoUpdateInterceptor::SetResponseOnIOThread(const std::string url,
89 NewRunnableMethod(this, &AutoUpdateInterceptor::SetResponse, url, path));