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 20607d38cd5364be7309cab273be24d6ad601dbc..fbadb2903eeb7c2aed3713070cba16dee916fe6d 100644 |
--- a/content/browser/fileapi/fileapi_message_filter.cc |
+++ b/content/browser/fileapi/fileapi_message_filter.cc |
@@ -55,7 +55,7 @@ namespace { |
void RevokeFilePermission(int child_id, const base::FilePath& path) { |
ChildProcessSecurityPolicyImpl::GetInstance()->RevokeAllPermissionsForFile( |
- child_id, path); |
+ child_id, path); |
} |
} // namespace |
@@ -584,7 +584,7 @@ void FileAPIMessageFilter::OnStartBuildingStream( |
DCHECK(BrowserThread::CurrentlyOn(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 */)) { |
+ url.path(), "blobinternal%3A///", true /* case_sensitive */)) { |
NOTREACHED() << "Malformed Stream URL: " << url.spec(); |
BadMessageReceived(); |
return; |
@@ -809,7 +809,7 @@ void FileAPIMessageFilter::DidCreateSnapshot( |
// Return the file info and platform_path. |
Send(new FileSystemMsg_DidCreateSnapshotFile( |
- request_id, info, platform_path)); |
+ request_id, info, platform_path)); |
} |
bool FileAPIMessageFilter::ValidateFileSystemURL( |