Lines Matching refs:modified

219 // Creates NetLog parameters to indicate that an extension modified a request.
313 // Find modified headers.
503 bool modified = false;
525 modified = true;
533 modified = true;
537 return modified;
541 // |deltas| to |cookies|. Returns whether any cookie was modified.
545 bool modified = false;
567 modified = true;
572 return modified;
580 bool modified = false;
597 modified = true;
604 return modified;
629 bool modified = false;
630 modified |= MergeAddRequestCookieModifications(deltas, &cookies);
631 modified |= MergeEditRequestCookieModifications(deltas, &cookies);
632 modified |= MergeRemoveRequestCookieModifications(deltas, &cookies);
635 if (modified) {
700 // has been modified differently before. As deltas is sorted by decreasing
713 // We must not delete anything that has been modified before.
738 // modified before.
826 bool modified = false;
828 modified |= cookie->SetName(*modification->name);
830 modified |= cookie->SetValue(*modification->value);
832 modified |= cookie->SetExpires(*modification->expires);
834 modified |= cookie->SetMaxAge(base::IntToString(*modification->max_age));
836 modified |= cookie->SetDomain(*modification->domain);
838 modified |= cookie->SetPath(*modification->path);
840 modified |= cookie->SetIsSecure(*modification->secure);
842 modified |= cookie->SetIsHttpOnly(*modification->http_only);
843 return modified;
901 bool modified = false;
918 modified = true;
921 return modified;
925 // |deltas| to |cookies|. Returns whether any cookie was modified.
929 bool modified = false;
945 modified |= ApplyResponseCookieModification(
951 return modified;
959 bool modified = false;
976 modified = true;
983 return modified;
1011 bool modified = false;
1012 modified |= MergeAddResponseCookieModifications(deltas, &cookies);
1013 modified |= MergeEditResponseCookieModifications(deltas, &cookies);
1014 modified |= MergeRemoveResponseCookieModifications(deltas, &cookies);
1017 if (modified)