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