diff options
Diffstat (limited to 'net/base/data_url.cc')
-rw-r--r-- | net/base/data_url.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/base/data_url.cc b/net/base/data_url.cc index cf8e239..4040a66 100644 --- a/net/base/data_url.cc +++ b/net/base/data_url.cc @@ -38,7 +38,9 @@ #include "net/base/base64.h" #include "net/base/escape.h" -/*static*/ +namespace net { + +// static bool DataURL::Parse(const GURL& url, std::string* mime_type, std::string* charset, std::string* data) { std::string::const_iterator begin = url.spec().begin(); @@ -119,3 +121,5 @@ bool DataURL::Parse(const GURL& url, std::string* mime_type, temp_data.swap(*data); return true; } + +} // namespace net |