| 530 | } |
| 531 | |
| 532 | void ReplaceFirstSubstringAfterOffset(string16* str, |
| 533 | size_t start_offset, |
| 534 | const string16& find_this, |
| 535 | const string16& replace_with) { |
| 536 | DoReplaceSubstringsAfterOffset(str, start_offset, find_this, replace_with, |
| 537 | false); // replace first instance |
| 538 | } |
| 539 | |
| 540 | void ReplaceFirstSubstringAfterOffset(std::string* str, |
| 541 | size_t start_offset, |