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

Unified Diff: third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.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/websockets/DocumentWebSocketChannel.cpp
diff --git a/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp b/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp
index 456d2711ef7e3e8c6e4793dcb4dc1c449dc87872..b51bbc8c719201d2e3b9a1a6739c24d715eef98d 100644
--- a/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp
+++ b/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp
@@ -567,7 +567,7 @@ void DocumentWebSocketChannel::didFinishLoadingBlob(DOMArrayBuffer* buffer)
void DocumentWebSocketChannel::didFailLoadingBlob(FileError::ErrorCode errorCode)
{
m_blobLoader.clear();
- if (errorCode == FileError::ABORT_ERR) {
+ if (errorCode == FileError::kAbortErr) {
// The error is caused by cancel().
return;
}

Powered by Google App Engine
This is Rietveld 408576698