Home | History | Annotate | Download | only in web_request

Lines Matching refs:blocked_requests_

737   // Whether to initialized blocked_requests_.
766 blocked_requests_[request->identifier()].event = kOnBeforeRequest;
767 blocked_requests_[request->identifier()].is_incognito |=
769 blocked_requests_[request->identifier()].request = request;
770 blocked_requests_[request->identifier()].callback = callback;
771 blocked_requests_[request->identifier()].new_url = new_url;
772 blocked_requests_[request->identifier()].net_log = &request->net_log();
774 if (blocked_requests_[request->identifier()].num_handlers_blocking == 0) {
823 blocked_requests_[request->identifier()].event = kOnBeforeSendHeaders;
824 blocked_requests_[request->identifier()].is_incognito |=
826 blocked_requests_[request->identifier()].request = request;
827 blocked_requests_[request->identifier()].callback = callback;
828 blocked_requests_[request->identifier()].request_headers = headers;
829 blocked_requests_[request->identifier()].net_log = &request->net_log();
831 if (blocked_requests_[request->identifier()].num_handlers_blocking == 0) {
921 blocked_requests_[request->identifier()].event = kOnHeadersReceived;
922 blocked_requests_[request->identifier()].is_incognito |=
924 blocked_requests_[request->identifier()].request = request;
925 blocked_requests_[request->identifier()].callback = callback;
926 blocked_requests_[request->identifier()].net_log = &request->net_log();
927 blocked_requests_[request->identifier()].override_response_headers =
929 blocked_requests_[request->identifier()].original_response_headers =
931 blocked_requests_[request->identifier()].new_url =
934 if (blocked_requests_[request->identifier()].num_handlers_blocking == 0) {
986 blocked_requests_[request->identifier()].event = kOnAuthRequired;
987 blocked_requests_[request->identifier()].is_incognito |=
989 blocked_requests_[request->identifier()].request = request;
990 blocked_requests_[request->identifier()].auth_callback = callback;
991 blocked_requests_[request->identifier()].auth_credentials = credentials;
992 blocked_requests_[request->identifier()].net_log = &request->net_log();
1203 blocked_requests_.erase(request->identifier());
1249 blocked_requests_[request->identifier()].request = request;
1250 blocked_requests_[request->identifier()].is_incognito |=
1252 blocked_requests_[request->identifier()].num_handlers_blocking +=
1254 blocked_requests_[request->identifier()].blocking_time = base::Time::Now();
1781 if (blocked_requests_.find(request_id) == blocked_requests_.end())
1784 BlockedRequest& blocked_request = blocked_requests_[request_id];
1870 BlockedRequest& blocked_request = blocked_requests_[request_id];
1947 blocked_requests_.erase(request_id);
1959 blocked_requests_.erase(request_id);
1963 blocked_requests_.erase(request_id);
2027 blocked_requests_[request->identifier()].num_handlers_blocking++;
2028 blocked_requests_[request->identifier()].request = request;
2029 blocked_requests_[request->identifier()].is_incognito |=
2031 blocked_requests_[request->identifier()].blocking_time =
2033 blocked_requests_[request->identifier()].original_response_headers =
2035 blocked_requests_[request->identifier()].extension_info_map =
2057 blocked_requests_[request->identifier()].response_deltas;
2077 if (blocked_requests_.find(request_id) == blocked_requests_.end())
2080 BlockedRequest& blocked_request = blocked_requests_[request_id];