| Index: third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
|
| diff --git a/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp b/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
|
| index cf846c286d47e1535a57e417a45215186965c23f..25a41d896d1135d3dd8ae94725d6370d9641470d 100644
|
| --- a/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
|
| +++ b/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
|
| @@ -181,7 +181,7 @@ class ResponsesAccumulator : public RefCounted<ResponsesAccumulator> {
|
|
|
| void AddRequestResponsePair(const WebServiceWorkerRequest& request,
|
| const WebServiceWorkerResponse& response) {
|
| - ASSERT(num_responses_left_ > 0);
|
| + DCHECK_GT(num_responses_left_, 0);
|
| RequestResponse& request_response =
|
| responses_.at(responses_.size() - num_responses_left_);
|
| request_response.request = request.Url().GetString();
|
|
|