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

Unified Diff: third_party/WebKit/Source/core/fileapi/FileError.h

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/core/fileapi/FileError.h
diff --git a/third_party/WebKit/Source/core/fileapi/FileError.h b/third_party/WebKit/Source/core/fileapi/FileError.h
index 2c18bd1947f97cf58e93726576abcc685c2cf635..d41aac1a2a6b0a9f1bb93acc5c4ea67d130ddec7 100644
--- a/third_party/WebKit/Source/core/fileapi/FileError.h
+++ b/third_party/WebKit/Source/core/fileapi/FileError.h
@@ -41,19 +41,19 @@ class ExceptionState;
namespace FileError {
enum ErrorCode {
- OK = 0,
- NOT_FOUND_ERR = 1,
- SECURITY_ERR = 2,
- ABORT_ERR = 3,
- NOT_READABLE_ERR = 4,
- ENCODING_ERR = 5,
- NO_MODIFICATION_ALLOWED_ERR = 6,
- INVALID_STATE_ERR = 7,
- SYNTAX_ERR = 8,
- INVALID_MODIFICATION_ERR = 9,
- QUOTA_EXCEEDED_ERR = 10,
- TYPE_MISMATCH_ERR = 11,
- PATH_EXISTS_ERR = 12,
+ kOK = 0,
+ kNotFoundErr = 1,
+ kSecurityErr = 2,
+ kAbortErr = 3,
+ kNotReadableErr = 4,
+ kEncodingErr = 5,
+ kNoModificationAllowedErr = 6,
+ kInvalidStateErr = 7,
+ kSyntaxErr = 8,
+ kInvalidModificationErr = 9,
+ kQuotaExceededErr = 10,
+ kTypeMismatchErr = 11,
+ kPathExistsErr = 12,
};
CORE_EXPORT extern const char abortErrorMessage[];
« no previous file with comments | « third_party/WebKit/Source/core/events/WheelEvent.cpp ('k') | third_party/WebKit/Source/core/fileapi/FileError.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698