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

Unified Diff: third_party/WebKit/Source/modules/fetch/FetchDataLoader.cpp

Issue 1502503004: Remove kuint64max. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@kint8
Patch Set: rebase Created 5 years 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/fetch/FetchDataLoader.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/FetchDataLoader.cpp b/third_party/WebKit/Source/modules/fetch/FetchDataLoader.cpp
index 107453c0547a8cdb3a5c3e064d01070208c5b9ee..690da890e9a61eb2698586f981281f490ca75bb9 100644
--- a/third_party/WebKit/Source/modules/fetch/FetchDataLoader.cpp
+++ b/third_party/WebKit/Source/modules/fetch/FetchDataLoader.cpp
@@ -39,7 +39,7 @@ private:
m_reader = handle->obtainReader(this);
RefPtr<BlobDataHandle> blobHandle = m_reader->drainAsBlobDataHandle();
if (blobHandle) {
- ASSERT(blobHandle->size() != kuint64max);
+ ASSERT(blobHandle->size() != UINT64_MAX);
m_reader.clear();
if (blobHandle->type() != m_mimeType) {
// A new BlobDataHandle is created to override the Blob's type.

Powered by Google App Engine
This is Rietveld 408576698