| Index: third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
|
| diff --git a/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp b/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
|
| index 980c34d1e146e8f8fc214d01681167d2678c1654..64930daeeba97d199ed92cc21b8ec4a8681e4f8c 100644
|
| --- a/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
|
| +++ b/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
|
| @@ -67,13 +67,13 @@
|
|
|
| StringBuilder filesystemName;
|
| filesystemName.append(Platform::current()->fileSystemCreateOriginIdentifier(WebSecurityOrigin(context->getSecurityOrigin())));
|
| - filesystemName.append(":Isolated_");
|
| + filesystemName.appendLiteral(":Isolated_");
|
| filesystemName.append(filesystemId);
|
|
|
| // The rootURL created here is going to be attached to each filesystem request and
|
| // is to be validated each time the request is being handled.
|
| StringBuilder rootURL;
|
| - rootURL.append("filesystem:");
|
| + rootURL.appendLiteral("filesystem:");
|
| rootURL.append(context->getSecurityOrigin()->toString());
|
| rootURL.append('/');
|
| rootURL.append(isolatedPathPrefix);
|
|
|