Index: content/common/resource_dispatcher.cc |
diff --git a/content/common/resource_dispatcher.cc b/content/common/resource_dispatcher.cc |
index 301c3bf7ee229ca7c68ba7830c667759bb428e6a..5cb68000cd3abc61e0ff3c1d6df9ee0e5fb2d940 100644 |
--- a/content/common/resource_dispatcher.cc |
+++ b/content/common/resource_dispatcher.cc |
@@ -305,9 +305,7 @@ ResourceDispatcher::PendingRequestInfo* |
ResourceDispatcher::GetPendingRequestInfo(int request_id) { |
PendingRequestList::iterator it = pending_requests_.find(request_id); |
if (it == pending_requests_.end()) { |
- // This might happen for kill()ed requests on the webkit end, so perhaps it |
- // shouldn't be a warning... |
- DLOG(WARNING) << "Received message for a nonexistent or finished request"; |
+ // This might happen for kill()ed requests on the webkit end. |
return NULL; |
} |
return &(it->second); |