Home | History | Annotate | Download | only in web_request

Lines Matching refs:modified

215 // Creates NetLog parameters to indicate that an extension modified a request.
309 // Find modified headers.
560 bool modified = false;
582 modified = true;
590 modified = true;
594 return modified;
598 // |deltas| to |cookies|. Returns whether any cookie was modified.
602 bool modified = false;
624 modified = true;
629 return modified;
637 bool modified = false;
654 modified = true;
661 return modified;
686 bool modified = false;
687 modified |= MergeAddRequestCookieModifications(deltas, &cookies);
688 modified |= MergeEditRequestCookieModifications(deltas, &cookies);
689 modified |= MergeRemoveRequestCookieModifications(deltas, &cookies);
692 if (modified) {
756 // has been modified differently before. As deltas is sorted by decreasing
769 // We must not delete anything that has been modified before.
794 // modified before.
882 bool modified = false;
884 modified |= cookie->SetName(*modification->name);
886 modified |= cookie->SetValue(*modification->value);
888 modified |= cookie->SetExpires(*modification->expires);
890 modified |= cookie->SetMaxAge(base::IntToString(*modification->max_age));
892 modified |= cookie->SetDomain(*modification->domain);
894 modified |= cookie->SetPath(*modification->path);
896 modified |= cookie->SetIsSecure(*modification->secure);
898 modified |= cookie->SetIsHttpOnly(*modification->http_only);
899 return modified;
964 bool modified = false;
981 modified = true;
984 return modified;
988 // |deltas| to |cookies|. Returns whether any cookie was modified.
992 bool modified = false;
1008 modified |= ApplyResponseCookieModification(
1014 return modified;
1022 bool modified = false;
1039 modified = true;
1046 return modified;
1074 bool modified = false;
1075 modified |= MergeAddResponseCookieModifications(deltas, &cookies);
1076 modified |= MergeEditResponseCookieModifications(deltas, &cookies);
1077 modified |= MergeRemoveResponseCookieModifications(deltas, &cookies);
1080 if (modified)