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. |