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

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

Issue 2068053002: Rename Blink constants generated from IDL files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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 79551d0bc7fbb2fbe00bec871c7ab2a6d5b423fa..f4cfb49348c79846f75be7f15201b81ccf528b68 100644
--- a/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
+++ b/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
@@ -159,7 +159,7 @@ void DOMFileSystem::createWriter(const FileEntry* fileEntry, FileWriterCallback*
ASSERT(fileEntry);
if (!fileSystem()) {
- reportError(errorCallback, FileError::ABORT_ERR);
+ reportError(errorCallback, FileError::kAbortErr);
return;
}
@@ -173,7 +173,7 @@ void DOMFileSystem::createFile(const FileEntry* fileEntry, BlobCallback* success
{
KURL fileSystemURL = createFileSystemURL(fileEntry);
if (!fileSystem()) {
- reportError(errorCallback, FileError::ABORT_ERR);
+ reportError(errorCallback, FileError::kAbortErr);
return;
}

Powered by Google App Engine
This is Rietveld 408576698