| Index: content/browser/fileapi/fileapi_message_filter.cc
|
| diff --git a/content/browser/fileapi/fileapi_message_filter.cc b/content/browser/fileapi/fileapi_message_filter.cc
|
| index 9c10e43b3cd4030c9694e9b37ec2132411521c0a..bcd2ce623b2ab859490c4c8dc16778b46932b131 100644
|
| --- a/content/browser/fileapi/fileapi_message_filter.cc
|
| +++ b/content/browser/fileapi/fileapi_message_filter.cc
|
| @@ -598,8 +598,8 @@ void FileAPIMessageFilter::OnStartBuildingStream(
|
| const GURL& url, const std::string& content_type) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
| // Only an internal Blob URL is expected here. See the BlobURL of the Blink.
|
| - if (!StartsWithASCII(
|
| - url.path(), "blobinternal%3A///", true /* case_sensitive */)) {
|
| + if (!base::StartsWithASCII(url.path(), "blobinternal%3A///",
|
| + true /* case_sensitive */)) {
|
| NOTREACHED() << "Malformed Stream URL: " << url.spec();
|
| bad_message::ReceivedBadMessage(this,
|
| bad_message::FAMF_MALFORMED_STREAM_URL);
|
|
|