Convenience wrapper around EscapeXml when str is an attribute value.
| 4339 | |
| 4340 | // Convenience wrapper around EscapeXml when str is an attribute value. |
| 4341 | static String EscapeXmlAttribute(const char* str) { |
| 4342 | return EscapeXml(str, true); |
| 4343 | } |
| 4344 | |
| 4345 | // Convenience wrapper around EscapeXml when str is not an attribute value. |
| 4346 | static String EscapeXmlText(const char* str) { return EscapeXml(str, false); } |
nothing calls this directly
no outgoing calls
no test coverage detected