Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(696)

Unified Diff: third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp

Issue 2017053003: Remove StringBuilder::appendLiteral. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 64930daeeba97d199ed92cc21b8ec4a8681e4f8c..980c34d1e146e8f8fc214d01681167d2678c1654 100644
--- a/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
+++ b/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
@@ -67,13 +67,13 @@ DOMFileSystem* DOMFileSystem::createIsolatedFileSystem(ExecutionContext* context
StringBuilder filesystemName;
filesystemName.append(Platform::current()->fileSystemCreateOriginIdentifier(WebSecurityOrigin(context->getSecurityOrigin())));
- filesystemName.appendLiteral(":Isolated_");
+ filesystemName.append(":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.appendLiteral("filesystem:");
+ rootURL.append("filesystem:");
rootURL.append(context->getSecurityOrigin()->toString());
rootURL.append('/');
rootURL.append(isolatedPathPrefix);

Powered by Google App Engine
This is Rietveld 408576698