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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/SQLError.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/modules/webdatabase/SQLError.h
diff --git a/third_party/WebKit/Source/modules/webdatabase/SQLError.h b/third_party/WebKit/Source/modules/webdatabase/SQLError.h
index 730f5c99263b638b7cf6a21008704ecbe7441dc8..3342f70d7c84e962496784940b498455d4ed1ac9 100644
--- a/third_party/WebKit/Source/modules/webdatabase/SQLError.h
+++ b/third_party/WebKit/Source/modules/webdatabase/SQLError.h
@@ -76,14 +76,14 @@ public:
String message() const { return m_data.message(); }
enum SQLErrorCode {
- UNKNOWN_ERR = 0,
- DATABASE_ERR = 1,
- VERSION_ERR = 2,
- TOO_LARGE_ERR = 3,
- QUOTA_ERR = 4,
- SYNTAX_ERR = 5,
- CONSTRAINT_ERR = 6,
- TIMEOUT_ERR = 7
+ kUnknownErr = 0,
+ kDatabaseErr = 1,
+ kVersionErr = 2,
+ kTooLargeErr = 3,
+ kQuotaErr = 4,
+ kSyntaxErr = 5,
+ kConstraintErr = 6,
+ kTimeoutErr = 7
};
static const char quotaExceededErrorMessage[];

Powered by Google App Engine
This is Rietveld 408576698