Lines Matching full:data
17 // See RFC 2397 for a complete description of the 'data' URL scheme.
19 // Briefly, a 'data' URL has the form:
21 // data:[<mediatype>][;base64],<data>
24 // parameters.) The appearance of ";base64" means that the data is encoded as
25 // base64. Without ";base64", the data (as a sequence of octets) is represented
33 // This method can be used to parse a 'data' URL into its component pieces.
35 // The resulting mime_type is normalized to lowercase. The data is the
36 // decoded data (e.g.., if the data URL specifies base64 encoding, then the
37 // returned data is base64 decoded, and any %-escaped bytes are unescaped).
42 // OPTIONAL: If |data| is NULL, then the <data> section will not be parsed
48 std::string* data);